Arch Panel Sheet: Difference between revisions

From FreeCAD Documentation
(Marked this version for translation)
mNo edit summary
Line 23: Line 23:


<!--T:6-->
<!--T:6-->
# Optionally, select one or more [[ArchPanel Cut]] objects or any other 2D object that lies on the XY plane
# Optionally, select one or more [[Arch Panel Cut]] objects or any other 2D object that lies on the XY plane
# Press the {{KEY|[[Image:Arch Panel Sheet.png|16px]] [[Arch Panel Sheet]]}} button, or press {{KEY|P}} then {{KEY|S}} keys
# Press the {{KEY|[[Image:Arch Panel Sheet.png|16px]] [[Arch Panel Sheet]]}} button, or press {{KEY|P}} then {{KEY|S}} keys
# Adjust the desired properties
# Adjust the desired properties

Revision as of 18:02, 18 December 2016

Arch Panel Sheet

Menu location
Arch → Panel tools -> Panel Sheet
Workbenches
Arch
Default shortcut
P,S
Introduced in version
-
See also
Arch Panel

Description

This tool allows to build a 2D sheet, including any number of Arch Panel Cut objects, or any other 2D object such as those made by the Draft Workbench and Sketcher Workbench. The Panel Sheet is typically made to layout cuts to be made by a CNC machine. These sheets can then be exported to a DXF file.

The above image shows how Panel Sheets appear when exported to DXF.

How to use

  1. Optionally, select one or more Arch Panel Cut objects or any other 2D object that lies on the XY plane
  2. Press the Arch Panel Sheet button, or press P then S keys
  3. Adjust the desired properties

Options

  • After the panel sheet is created, with or without child objects, Any other child object can be added/removed to/from the panel sheet by double-clicking it in the tree view and adding or removing objects from its Group folder
  • Double-clicking on the panel in the tree view also allows you to move the objects contained in this sheet, or move its tag
  • It is possible to automatically make panels composed of more than one sheet of a material, by raising its Sheets property
  • Panel Sheets can display a margin, that is useful to make sure a certain space is always present between inner objects and the border of the sheet
  • When Panel sheets are exported to DXF, the outlines, inner holes, tags of their inner children are placed on different layers, as shown on the above image

Properties

  • DataHeight: The height of the sheet
  • DataWidth: The width of the sheet
  • DataFill Ratio: The percentage of the sheet area that is filled by cuts (automatic)
  • DataTag Text: The text to display
  • DataTag Size: The size of the tag text
  • DataTag Position: The position of the tag text. Keep (0,0,0) for automatic center position
  • DataTag Rotation: The rotation of the tag text
  • DataFont File: The font of the tag text
  • ViewMargin: A margin that can be displayed inside the panel border
  • ViewShow Margin: Turns the display of the margin on/off

Scripting

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

makePanelSheet ([objectslist])

Example:

import Arch,Draft
base = Draft.makeRectangle(500,200)
panel = Arch.makePanel(base,thickness=36)
cut = Arch.makePanelCut(panel)
sheet = Arch.makePanelSheet([cut])