Arch Roof/de: Difference between revisions

From FreeCAD Documentation
(Created page with "==Anwendung==")
(Created page with "# Erstelle einen Linienzug entgegen dem Uhrzeigersinn und wähle ihn aus #*600px # Drücke den {{Button|16px Arch...")
Line 10: Line 10:
==Anwendung==
==Anwendung==


# Erstelle einen Linienzug entgegen dem Uhrzeigersinn und wähle ihn aus
# Create a wire with following the counterclockwise direction and select it.
#*[[Image:CounterclockwiseWire.png|600px]]
#*[[Image:CounterclockwiseWire.png|600px]]
# Press the {{KEY|[[Image:Arch Roof.png|16px]] [[Arch Roof]]}} button, or press {{KEY|R}} then {{KEY|F}} keys
# Drücke den {{Button|[[Image:Arch Roof.png|16px]] [[Arch Roof/de|Dach]]}}-Button oder drücke {{KEY|R}}, dann {{KEY|F}}
# Das Standard-Dach-Objekt könnte eine seltsame Form haben, weil das Werkzeug nicht alle benötigten Informationen hat
# The default roof object could have a strange shape, it's because the tool have not all the needed informations.
# Nach der Erstellung des Dach-Objekts doppelklicke auf das Objekt in der Baumansicht, um Zugang zu den Eigenschaften zu erhalten und sie zu ändern. Der Winkel muss zwischen 0 und 90 sein
# After creating the default roof, double click on the object in the tree view to access and edit all the properties. Angle must be between 0 and 90.
#*[[File:RoofTable.png]]
#*[[File:RoofTable.png]]
# Jede Linie gehört zu einer Dach-Scheibe. Auf diese Weise können Eigenschaften für jede Dach-Scheibe einzeln gesetzt werden.
# Each line correspond to a roof pane. So you can set properties you want for each roof pane.
# To help you, you can set Angle or Run to 0 and defined a Relative Id, this make automatic calculs to find the data relative to the relative Id.
# Um Dir zu helfen, kannst Du Winkel (Angle) und ? (Run) auf 0 setzen und eine relative Id definieren, so dass eine automatische Berechnung die Daten relativ zu dieser Id ermittelt.
# Es funktioniert folgendermaßen:
# It work like this :
## If Angle = 0 and Run = 0 then profile is identical to the relative profile.
## Falls Winkel = 0 und Run = 0, dann ist das Profil identisch zum relativen Profil
## Falls Winkel = 0, dann wird der Winkel berechnet, so dass die Höhe die gleiche wie beim relativen Profil ist
## If Angle = 0 then angle is calculated so that the height is the same one as the relative profile.
## If Run = 0 then Run is calculated so that the height is the same one as the relative profile.
## Falls Run = 0, dann wird der Run berechnet, so dass die Höhe die gleiche wie beim relativen Profil ist
# At the end, set an angle to 90° to make a gable.
# Am Ende setze den Winkel auf 90°, um einen Giebel zu erstellen
#*[[Image:RoofProfil.png|600px]]
#*[[Image:RoofProfil.png|600px]]
# '''Also you can check this video''' : https://www.youtube.com/watch?v=4Urwru71dVk
# '''Also you can check this video''' : https://www.youtube.com/watch?v=4Urwru71dVk

Revision as of 21:19, 28 December 2018

Arch Roof

Menüeintrag
Arch → Roof
Arbeitsbereich
Arch
Standardtastenkürzel
R F
Eingeführt in Version
-
Siehe auch
Keiner

Beschreibung

Das Dach-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. Bitte beachte, dass sich dieses Werkzeug noch in der Entwicklung befindet und bei sehr komplexen Formen fehlschlägt. Das Prinzip ist, dass jede Kante ein Dachprofil (Neigung, Breite, Überhang, Dicke,...) zugewiesen wird.

Anwendung

  1. Erstelle einen Linienzug entgegen dem Uhrzeigersinn und wähle ihn aus
  2. Drücke den Dach-Button oder drücke R, dann F
  3. Das Standard-Dach-Objekt könnte eine seltsame Form haben, weil das Werkzeug nicht alle benötigten Informationen hat
  4. Nach der Erstellung des Dach-Objekts doppelklicke auf das Objekt in der Baumansicht, um Zugang zu den Eigenschaften zu erhalten und sie zu ändern. Der Winkel muss zwischen 0 und 90 sein
  5. Jede Linie gehört zu einer Dach-Scheibe. Auf diese Weise können Eigenschaften für jede Dach-Scheibe einzeln gesetzt werden.
  6. Um Dir zu helfen, kannst Du Winkel (Angle) und ? (Run) auf 0 setzen und eine relative Id definieren, so dass eine automatische Berechnung die Daten relativ zu dieser Id ermittelt.
  7. Es funktioniert folgendermaßen:
    1. Falls Winkel = 0 und Run = 0, dann ist das Profil identisch zum relativen Profil
    2. Falls Winkel = 0, dann wird der Winkel berechnet, so dass die Höhe die gleiche wie beim relativen Profil ist
    3. Falls Run = 0, dann wird der Run berechnet, so dass die Höhe die gleiche wie beim relativen Profil ist
  8. Am Ende setze den Winkel auf 90°, um einen Giebel zu erstellen
  9. Also you can check this video : https://www.youtube.com/watch?v=4Urwru71dVk

Options

Properties

  • DatenAngles: List of the slope angle of the roof pane (an angle for each edge in the wire).
  • DatenRuns: List of the width of the roof pane (a run for each edge in the wire).
  • DatenIdRel: List of relation Id The slope angle of the roof
  • DatenThickness: List of thickness of the roof pane. (a thickness for each edge in the wire).
  • DatenOverhang: List of the overhang of the roof pane (an overhang for each edge in the wire).
  • DatenFace: The face index of the base object to be used #Not really used

Scripting

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

makeRoof (baseobj,[facenr],[angles],[runs],[idrel],[thickness],[overhang],[name])
Makes a roof based on a closed wire. You can provide a list of angles, run, idrel, thickness, overhang for each edges in the wire to define the roof shape. The default for angle is 45 and the list is automatically complete to match with number of edges in the wire.

Example:

import Arch, Draft
rect = Draft.makeRectangle(30,40)
Arch.makeRoof(rect,angles=[30.,])