Arch Roof: Difference between revisions

From FreeCAD Documentation
(link to Arch Roof2)
m (code)
Line 28: Line 28:
The Roof tool can by used in [[macros]] and from the python console by using the following function:
The Roof tool can by used in [[macros]] and from the python console by using the following function:
</translate>
</translate>
{{Code|code=
<syntaxhighlight>
makeRoof (baseobj,[facenr],[angle],[name])
makeRoof (baseobj,[facenr],[angle],[name])
}}
</syntaxhighlight>
<translate>
<translate>
<!--T:10-->
<!--T:10-->
Line 38: Line 38:
Example:
Example:
</translate>
</translate>
{{Code|code=
<syntaxhighlight>
import Arch, Draft
import Arch, Draft
rect = Draft.makeRectangle(2,4)
rect = Draft.makeRectangle(2,4)
Arch.makeRoof(rect,angle=30)
Arch.makeRoof(rect,angle=30)
}}
</syntaxhighlight>
<languages/>
<languages/>

Revision as of 12:56, 30 December 2014

Arch Roof

Menu location
Arch -> Roof
Workbenches
Arch
Default shortcut
R F
Introduced in version
-
See also
Arch Roof2

Description

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

  • DataAngle: The slope angle of the roof
  • DataFace: 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)