Draft: Facebinder

From FreeCAD Documentation
Revision as of 18:07, 21 February 2020 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Draft Facebinder

poziția meniului
Draft → Facebinder
Ateliere
Draft, Arch
scurtătură
F F
Prezentat în versiune
-
A se vedea, de asemenea,
nici unul

Descriere

Facebinderul este un obiect foarte simplu, construit din fațetele selectate ale altor obiecte. Este parametric, puteți modifica obiectul original și actualizările obiectului facebinder în consecință. Acesta poate fi apoi folosit, de exemplu, pentru a face o extrudare dintr-o colecție de fațete de la alte obiecte. O utilizare tipică este în designul arhitectural, pentru a construi un obiect care acoperă mai multe bucăți de pereți. Puteți mișca și roti în jurul fațetei după crearea ei, totul va rămâne legat de fațetele originale.

It can be used to create an extrusion from a collection of faces from other objects. A typical use is in architectural design to build an object that covers several walls, for example, a wall paper, or wall finish.

Facebinder created from the faces of solid walls

Cum se folosește

  1. Selectați fețetele pe obiecte (utilizați CTRL pentru a selecta mai multe fețe)
  2. Apăsați butonul 16px Facebinder, sau apăsați tatele F, F

The Facebinder can be edited by double clicking on the element in the tree view. Then you can change the faces that are part of the object.

  • To add a face, click on a face of a solid object in the 3D view, and then click on the Add button.
  • To remove a face, select one of the sub-elements in the list, and then click on the Remove button.
  • Press Esc or the OK button to complete the edition.

Options

This object has no options when it's being created. Only selected faces will be used to create the Facebinder object.

Properties

Data

  • DateExtrusion: specifies an extrusion thickness to apply to all faces of the shape.
  • DateRemove Splitter: if it is true it tries to fuse the internal intersections of the Facebinder when it extruded.
  • DateSew: if it is true it tries to perform a topological sewing operation on the Facebinder when it extruded.

View

  • VizualizarePattern: specifies a Draft Pattern with which to fill the face of the shape. This property only works if VizualizareDisplay Mode is "Flat Lines".
  • VizualizarePattern Size: specifies the size of the Draft Pattern.

Scrip-Programare

Instrumentul Facebinder poate fi folosit în scripturile python și macros utilizând următoarea funcție:

Facebinder = makeFacebinder(selectionset)
  • Creează un obiect facebinder din setul de selecție dat, care este o listă de obiecte de selecție, cum ar fi returnate de metoda FreeCADGui.Selection.getSelectionEx ().
  • Sunt luate în considerare doar fețele selectate
  • Returnează obiectul nou creat
PropertyLinkSubList = [tuple1, tuple2, tuple3, ...]
PropertyLinkSubList = [(object1, list1), (object2, list2), (object3, list3), ...]
PropertyLinkSubList = [(object1, ['Face1', 'Face4', 'Face6']), ...]
PropertyLinkSubList = [(object1, ('Face1', 'Face4', 'Face6')), ...]

The thickness of the Facebinder can be added by overwriting its Extrusion attribute; the value is entered in millimeters.

The placement of the Facebinder can be changed by overwriting its Placement attribute, or by individually overwriting its Placement.Base and Placement.Rotation attributes.

Exempluː

import FreeCAD
import FreeCADGui
import Draft

# Insert a solid box
Box = FreeCAD.ActiveDocument.addObject("Part::Box", "Box")
Box.Length = 2300
Box.Width = 800
Box.Height = 1000

# selection = FreeCADGui.Selection.getSelectionEx()
selection = [(Box, ("Face1", "Face6"))]
Facebinder = Draft.makeFacebinder(selection)
Facebinder.Extrusion = 50
FreeCAD.ActiveDocument.recompute()

Facebinder.Placement.Base = FreeCAD.Vector(1000, -1000, 100)
Facebinder.ViewObject.ShapeColor = (0.99, 0.99, 0.4)