Arch: Panel Cut

From FreeCAD Documentation
Revision as of 06:39, 22 November 2018 by Luc (talk | contribs) (Created page with "Exempluː")

Arch Panel Cut

Menu location
Arch → Panel Tools → Panel Cut
Workbenches
Arch
Default shortcut
P,C
Introduced in version
-
See also
Arch Panel, Arch Panel Sheet, Arch Nest, Path Workbench

Descriere

Acest instrument creează, în documentul 3D, o vizualizare plană 2D a unui panou Arch Panel, care va fi inclus într-o Arch Panel Sheet sau exportată direct în DXF. Obiectele Panel Cut sunt, de asemenea, acceptate de Path Workbench.

Cum se folosește

  1. Selecta'i unul sau mai multe obiecte Arch Panel objects
  2. Apăsați butonul Arch Panel Cut, sau apăsați tastele în ordine P apoi C
  3. Modificați propreitățile dorite

Opţiuni

  • 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

Proprietăți

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

Scrip-Programare

Instrumentul Panel poate fi utilizat în macros și de la consola python utilizând următoarele funcții:

makePanelCut (object)

Exempluː

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

Tutorials