Arch Roof/fr: Difference between revisions

From FreeCAD Documentation
m (FuzzyBot moved page Arch Roof Legacy/fr to Arch Roof/fr without leaving a redirect: Part of translatable page "Arch Roof Legacy".)
(Updating to match new version of source page)
Line 1: Line 1:
{{GuiCommand/fr|Name=Arch Roof|Name/fr=Arch toiture|Workbenches=[[Arch Module/fr|Arch]]|MenuLocation=Arch Roof|Shortcut=R F|SeeAlso=[[Arch Roof2/fr|Arch Roof2]]}}
{{GuiCommand|Name=Arch Roof|Workbenches=[[Arch Module|Arch]]|MenuLocation=Arch -> Roof|Shortcut=R F}}


==Description==
==Description==


The Roof tool allows you to create a sloped roof from a selected wire. 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. The principle is that each edge is seen allotting a profile of roof (slope, width, overhang, thickness…).
L'outil toit permet de créer un toit en pente d'une face sélectionnée. N'importe quel face de n'importe quelle forme d'objet peut être utilisé, et l'objet toit créé est paramétrique, gardant sa relation avec l'objet de base. Veuillez noter que cet outil est encore en développement et peut échouer avec des formes très complexes.


[[Image:Arch Roof example.jpg|600px]]
[[Image:RoofExample.png|600px]]


==Utilisation==
==How to use==


# Create a wire with following the conterclockwise direction and select it.
# Sélectionnez une face existante
[[Image:CounterclockwiseWire.png|600px]]
# Pressez la touche {{KEY|[[Image:Arch Roof.png|16px]] [[Arch Roof/fr]]}} , ou pressez les touches {{KEY|R}} et {{KEY|F}}
# Press the {{KEY|[[Image:Arch Roof.png|16px]] [[Arch Roof]]}} button, or press {{KEY|R}} then {{KEY|F}} keys
# The default roof object could have a strange shape, it's because the tool have not all the needed informations.
# 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.
#[[Image:RoofTable.png]]
# 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.
# It work like this :
## If Angle = 0 and Run = 0 then profile is identical to the relative profile.
## 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.
# At the end, set an angle to 90° to make a gable.


[[Image:RoofProfil.png|600px]]
==Propriétés==


==Properties==
* {{PropertyData|Angle}}: L'angle de la pente du toit
* {{PropertyData|Face}}: L'indice de la face de l'objet de base à utiliser


* {{PropertyData|Angles}}: List of the slope angle of the roof pane (an angle for each edge in the wire).
==Script==
* {{PropertyData|Runs}}: List of the width of the roof pane (a run for each edge in the wire).
* {{PropertyData|IdRel}}: List of relation Id The slope angle of the roof
* {{PropertyData|Thickness}}: List of thickness of the roof pane. (a thickness for each edge in the wire).
* {{PropertyData|Overhang}}: List of the overhang of the roof pane (an overhang for each edge in the wire).
* {{PropertyData|Face}}: The face index of the base object to be used #Not really used


==Scripting==
L'outil toit est utilisable dans une [[macros/fr|macro]] et dans la console python en utilisant la fonction suivante :
{{Code|code=
makeRoof (baseobj,[facenr],[angle],[name])
}}
: Crée un toit basé sur une face d'un objet existant. Vous pouvez indiquer le nombre de faces pour bâtir le toit (par défaut = 1), l'angle est désigné en degrés (par défaut = 45) et le nom (par défaut = roof).


The Roof tool can by used in [[macros]] and from the python console by using the following function:
Exemple:
<syntaxhighlight>
{{Code|code=
makeRoof (baseobj,[facenr],[angles],[runs],[idrel],[thickness],[overhang],[name])
</syntaxhighlight>
: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:
<syntaxhighlight>
import Arch, Draft
import Arch, Draft
rect = Draft.makeRectangle(2,4)
rect = Draft.makeRectangle(30,40)
Arch.makeRoof(rect,angle=30)
Arch.makeRoof(rect,angles=[30.,])
</syntaxhighlight>
}}
<languages/>
<languages/>

Revision as of 13:44, 13 March 2015

Arch Roof

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

Description

The Roof tool allows you to create a sloped roof from a selected wire. 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. The principle is that each edge is seen allotting a profile of roof (slope, width, overhang, thickness…).

How to use

  1. Create a wire with following the conterclockwise direction and select it.

  1. Press the Arch Roof button, or press R then F keys
  2. The default roof object could have a strange shape, it's because the tool have not all the needed informations.
  3. 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.
  4. Each line correspond to a roof pane. So you can set properties you want for each roof pane.
  5. 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.
  6. It work like this :
    1. If Angle = 0 and Run = 0 then profile is identical to the relative profile.
    2. If Angle = 0 then angle is calculated so that the height is the same one as the relative profile.
    3. If Run = 0 then Run is calculated so that the height is the same one as the relative profile.
  7. At the end, set an angle to 90° to make a gable.

Properties

  • DonnéesAngles: List of the slope angle of the roof pane (an angle for each edge in the wire).
  • DonnéesRuns: List of the width of the roof pane (a run for each edge in the wire).
  • DonnéesIdRel: List of relation Id The slope angle of the roof
  • DonnéesThickness: List of thickness of the roof pane. (a thickness for each edge in the wire).
  • DonnéesOverhang: List of the overhang of the roof pane (an overhang for each edge in the wire).
  • DonnéesFace: 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.,])