Arch Dach

From FreeCAD Documentation
Revision as of 13:48, 12 March 2015 by FuzzyBot (talk | contribs) (FuzzyBot moved page Arch Roof/de to Arch Roof Legacy/de without leaving a redirect: Part of translatable page "Arch Roof".)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Arch Roof

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

Beschreibung

The Roof tool allows you to create a sloped roof from a selected face. Any face of any shape-based object can be used, and the created roof object is parametric, keeping its relationship with the base object. Please note that this tool is still in development, and might fail with very complex shapes.

How to use

  1. Select an existing face
  2. Press the Arch Roof button, or press R then F keys

Properties

  • DatenAngle: The slope angle of the roof
  • DatenFace: The face index of the base object to be used

Scripting

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

makeRoof (baseobj,[facenr],[angle],[name])
Makes a roof based on a face from an existing object. You can provide the number of the face to build the roof on (default = 1), the angle in degrees (default=45) and a name (default = roof).

Example:

import Arch, Draft
rect = Draft.makeRectangle(2,4)
Arch.makeRoof(rect,angle=30)