Kreslení Vylepšení

From FreeCAD Documentation
Revision as of 17:50, 3 March 2014 by Honza32 (talk | contribs) (Created page with "==Skriptování==")

Draft Upgrade

Menu location
Draft -> Upgrade
Workbenches
Draft, Arch
Default shortcut
U P
Introduced in version
-
See also
Draft Downgrade

Description

Tento nástroj aktualizuje vybrané objekty jiným způsobem. není-li vybrán žádný objekt budete vyzváni k jeho výběru.

Použití

  1. Vyberte jeden nebo více objektů, které chcete aktualizovat
  2. Stiskněte tlačítko Kreslení Aktualizace nebo stiskněte klávesy U a potom P

Volby

Vybrané objekty jsou modifikovány/aktualizovány podle následujících podmínek (v daném pořadí):

  • je-li ve výběru více než jeden objekt, jsou spojeny jejich plochy (union)
  • je-li vybrána pouze jedna plocha, nestane se nic
  • je-li ve výběru pouze jeden otevřený drát, bude uzavřen
  • jsou-li ve výběru pouze hrany, jsou všechny hrany spojeny do jednoho drátu (pokud možno uzavřeného)
  • není-li možná žádná z předchozích operací, je vytvořen složený objekt

Skriptování

The upgrade tool can be used from python scripts and macros like this:

 Draft.upgrade(objects, delete=False, force=None)
  • Upgrades the given object(s) (can be an object or a list of objects).
  • If delete is True, old objects are deleted.
  • The force attribute can be used to force a certain way of upgrading. It can be: makeCompound, closeGroupWires, makeSolid, closeWire, turnToParts, makeFusion, makeShell, makeFaces, draftify, joinFaces, makeSketchFace, makeWires
  • Returns a dictionnary containing two lists, a list of new objects and a list of objects to be deleted

Some of the operations of the Upgrade tool can also be made with the Part Fuse or Draft Wire tools.

Example:

import Draft
mycircle = Draft.makeCircle(2)
face1 = Draft.upgrade([mycircle],True)