Arch Panel Cut/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "==Comment l'utiliser==")
(Created page with "# Sélectionner un ou plusieurs objets Arch Panel # Presser la touche {{KEY|16px Arch Panel Cut}}, ou pres...")
Line 10: Line 10:
==Comment l'utiliser==
==Comment l'utiliser==


# Select one or more [[Arch Panel]] objects
# Sélectionner un ou plusieurs objets [[Arch Panel/fr|Arch Panel]]
# Press the {{KEY|[[Image:Arch Panel Cut.png|16px]] [[Arch Panel Cut]]}} button, or press {{KEY|P}} then {{KEY|C}} keys
# Presser la touche {{KEY|[[Image:Arch Panel Cut.png|16px]] [[Arch Panel Cut/fr|Arch Panel Cut]]}}, ou presser les touches {{KEY|P}} et {{KEY|C}}
# Ajuster les propriétés désirées
# Adjust the desired properties


==Options==
==Options==

Revision as of 08:53, 4 May 2018

Arch Panel Cut

Emplacement du menu
Arch → Panel Tools → Panel Cut
Ateliers
Arch
Raccourci par défaut
P,C
Introduit dans la version
-
Voir aussi
Arch Panel

Description

Cet outil crée, dans le document 3D, une vue 2D plane d'un Arch Panel, à inclure dans une Arch Panel Sheet ou directement exportée vers DXF.

Comment l'utiliser

  1. Sélectionner un ou plusieurs objets Arch Panel
  2. Presser la touche Arch Panel Cut, ou presser les touches P et C
  3. Ajuster les propriétés désirées

Options

  • If the panel is not flat (corrugated, for example), the relief won't appear in the Panel cut. This tool is useful mainly for flat panels
  • The panel cut can display a tag. This tag can be a custom line of text or can automatically show the Tag, Label or Description of its linked Panel.
  • To be useful for CNC machining, the tag should be written using a sticky font, where letters are simple polylines that are easy for the machine to follow. Upon creation, the Panel Cut object will automatically use the font specified in Edit -> Preferences -> Draft -> Texts and Dimensions -> ShapeString Font
  • Double-clicking on the panel cut in the tree view after it is created allows you to enter edit mode and modify the position of the tag
  • When you need to layout different Panel Cuts together, Panel Cuts can display a margin, that is useful to make sure a certain space is always present between a cut and another

Properties

  • DonnéesSource: The Arch Panel object shown by this Cut
  • DonnéesTag Text: The text to display. Can be %tag%, %label% or %description% to display the panel tag or label
  • DonnéesTag Size: The size of the tag text
  • DonnéesTag Position: The position of the tag text. Keep (0,0,0) for automatic center position
  • DonnéesTag Rotation: The rotation of the tag text
  • DonnéesFont File: The font of the tag text
  • VueMargin: A margin that can be displayed outside the panel cut shape
  • VueShow Margin: Turns the display of the margin on/off
  • DonnéesMake Face: If True, the panel is a Part Face, otherwise a Part Wire

Scripting

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

makePanelCut (object)

Example:

import Arch,Draft
base = Draft.makeRectangle(500,200)
panel = Arch.makePanel(base,thickness=36)
Arch.makePanelCut(panel)

Tutorials