Arch Site/de: Difference between revisions

From FreeCAD Documentation
(translated 'Site' page to German language)
 
(Updating to match new version of source page)
Line 1: Line 1:
{{GuiCommand/de|Name=Arch Site|Name/de=Baugrund|Workbenches=[[Arch Module/de|Arch]]|MenuLocation=Architektur -> Seite|Shortcut=S I|SeeAlso=[[Arch Floor/de|Etage]], [[Arch Building/de|Gebäude]]}}
{{GuiCommand|Name=Arch Site|Workbenches=[[Arch Module|Arch]]|MenuLocation=Arch -> Site|Shortcut=S I|SeeAlso=[[Arch Floor]], [[Arch Building]]}}


==Beschreibung==
==Description==


The Arch Site is a special type of FreeCAD group object particularly suited for representing a whole project site, or terrain. They are mostly used to organize your model, by containing [[Arch Building|building]] objects.
Der Baugrund ist ein speziell zur Repräsentation einer gesamten Projektfläche bzw. eines Terrains geeignetes FreeCAD-Gruppenobjekt. Das Objekt dient der Organisation des CAD-Modells und enthält [[Arch Building/de|Gebäude]]-Objekte.


==Anwendung==
==How to use==


# Optionally, select one or more objects to be included in your new site
# Selektieren Sie optional ein oder mehrere Objekte, welche in den neuen Baugrund übernommen werden sollen
# Drücken Sie den {{KEY|[[Image:Arch Site.png|16px]] '''Baugrund'''}}-Knopf oder die Tasten {{KEY|S}} und {{KEY|I}}
# Press the {{KEY|[[Image:Arch Site.png|16px]] '''Arch Site'''}} button, or press the {{KEY|S}} then {{KEY|I}} keys


==Optionen==
==Options==


* Nach Anlegen des Baugrunds können diesem ein oder mehrere Objekte durch Ziehen in die Baumansicht oder mittels [[Image:Arch Add.png|16px]] [[Arch Add/de|Hinzufügen]]-Werkzeug hinzugefügt werden.
* After creating a site, you can add more objects to it by drag and dropping them in the Tree View or by using the [[Image:Arch Add.png|16px]] [[Arch Add]] tool
* Durch Ziehen von Objekten aus der Baumansicht oder mittels [[Image:Arch Remove.png|16px]] [[Arch Remove/de|Entfernen]]-Werkzeug können Objekte vom Baugrund entfernt werden.
* You can remove objects from a site by drag and dropping them out of it the Tree View or by using the [[Image:Arch Remove.png|16px]] [[Arch Remove]] tool


==Scripting==
==Scripting==


The Site tool can by used in [[macros]] and from the python console by using the following function:
Das Baugrund-Werkzeug kann in [[macros/de|Makros]] ebenso wie aus der Python-Konsole heraus über folgende Funktion angesprochen werden:
<syntaxhighlight>
makeSite ([objectslist])
</syntaxhighlight>
creates a site including the objects from the given list.


Example:
'''makeSite ([objektListe])'''
<syntaxhighlight>
erzeugt einen Baugrund inklusive der in der Liste angegebenen Objekte
import Arch
Arch.makeSite()
</syntaxhighlight>


<languages/>
Beispiel:

import Arch
Arch.makeSite()


{{languages/de | {{en|Arch_Site}} {{es|Arch_Site/es}} {{fr|Arch_Site/fr}} {{it|Arch_Site/it}} {{jp|Arch_Site/jp}}}}

Revision as of 10:55, 29 November 2013

Arch Site

Menu location
Arch -> Site
Workbenches
Arch
Default shortcut
S I
Introduced in version
-
See also
Arch Floor, Arch Building

Description

The Arch Site is a special type of FreeCAD group object particularly suited for representing a whole project site, or terrain. They are mostly used to organize your model, by containing building objects.

How to use

  1. Optionally, select one or more objects to be included in your new site
  2. Press the Arch Site button, or press the S then I keys

Options

  • After creating a site, you can add more objects to it by drag and dropping them in the Tree View or by using the Arch Add tool
  • You can remove objects from a site by drag and dropping them out of it the Tree View or by using the Arch Remove tool

Scripting

The Site tool can by used in macros and from the python console by using the following function:

makeSite ([objectslist])

creates a site including the objects from the given list.

Example:

import Arch
Arch.makeSite()