Draft Clone/cs: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
{{Page_in_progress}}
<languages/>
<languages/>

{{Docnav
{{Docnav
|[[Draft_Stretch|Stretch]]
|[[Draft_PointArray|Point Array]]
|[[Draft_OrthoArray|OrthoArray]]
|[[Draft_Drawing|Drawing]]
|[[Draft_Module|Draft]]
|[[Draft_Module|Draft]]
|IconL=Draft_PointArray.svg
|IconL=Draft_Stretch.svg
|IconR=Draft_Drawing.svg
|IconR=Draft_OrthoArray.svg
|IconC=Workbench_Draft.svg
|IconC=Workbench_Draft.svg
}}
}}
Line 44: Line 46:


===Limitations ===
===Limitations ===

Currently, [[Sketcher Workbench|Sketcher Sketches]] cannot be mapped to the faces of a clone.
Currently, [[Sketcher Workbench|Sketcher Sketches]] cannot be mapped to the faces of a clone.


==Options==
==Options==

There are no options for this tool. Either it works with the selected objects or not.
There are no options for this tool. Either it works with the selected objects or not.

==Properties==


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 54: Line 60:
* Výsledek použití nástroje [[Draft Scale/cs|Kreslení Měřítko]] je také klon
* Výsledek použití nástroje [[Draft Scale/cs|Kreslení Měřítko]] je také klon
</div>
</div>

==Scripting==


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 90: Line 98:
FreeCAD.ActiveDocument.recompute()
FreeCAD.ActiveDocument.recompute()
}}
}}



{{Docnav
{{Docnav
|[[Draft_Stretch|Stretch]]
|[[Draft_PointArray|Point Array]]
|[[Draft_OrthoArray|OrthoArray]]
|[[Draft_Drawing|Drawing]]
|[[Draft_Module|Draft]]
|[[Draft_Module|Draft]]
|IconL=Draft_PointArray.svg
|IconL=Draft_Stretch.svg
|IconR=Draft_Drawing.svg
|IconR=Draft_OrthoArray.svg
|IconC=Workbench_Draft.svg
|IconC=Workbench_Draft.svg
}}
}}
Line 102: Line 111:
{{Draft Tools navi{{#translation:}}}}
{{Draft Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Revision as of 09:44, 20 May 2021

This documentation is a work in progress. Please don't mark it as translatable since it will change in the next hours and days.

Kreslení Klon

Umístění Menu
Draft → Clone
Pracovní stoly
Kreslení, Architektura
Výchozí zástupce
Nikdo
Představen ve verzi
-
Viz také
Kreslení Měřítko

Description

Popis

Tento nástroj vytváří klon (kopie, která je parametricky svázaná s originálním objektem). Jestliže se změní originální objekt, změní se i klon, ale podrží si svoji pozici, otočení a měřítko.

The Clone tool can be used on 2D shapes created with the Draft Workbench, but can also be used on many types of 3D objects such as those created with the Part, PartDesign, or Arch Workbenches.

To create simple copies, that are completely independent from an original object, use Draft Move, Draft Rotate, and Draft Scale. To position copies in an orthogonal array use Draft Array; to position copies along a path use Draft PathArray; to position copies at specified points use Draft PointArray.

Usage

Použití

  1. Vyberte objekty, které chcete klonovat
  2. Stiskněte tlačítko Klon

Depending on its options, the Draft Scale tool also creates a clone at a specified scale.

Clones of 2D objects created with the Draft or Sketcher Workbenches will also be 2D objects, and therefore can be used as such for the PartDesign Workbench.

All Arch Workbench objects have the possibility to behave as clones by using their ÚdajeCloneOf property. If you use the Draft Clone tool on a selected Arch object, you will produce such an Arch clone instead of a regular Draft clone.

Limitations

Currently, Sketcher Sketches cannot be mapped to the faces of a clone.

Options

There are no options for this tool. Either it works with the selected objects or not.

Properties

Vlastnosti

  • ÚdajeMěřítko: Specifikuje volitelné měřítko pro klon
  • Výsledek použití nástroje Kreslení Měřítko je také klon

Scripting

Skriptování

Nástroj Klon může být využit v makrech a z konzoly Pythonu použitím následující funkce:

The Clone tool can be used in macros and from the Python console by using the following function:

cloned_object = clone(obj, delta=None, forcedraft=False)
  • Vytvoří klon(y) zadaného objektu(ů).
  • Klon je přesná, propojená kopie zadaného objektu.
  • Jestliže se změní originální objekt, změní se i finální objekt. Volitelně můžete zadat delta Vektor čímž posunete klon z originální pozice.

The fusion of the objects that are part of the clone can be achieved by setting its Fuse attribute to True.

Příklad:

import FreeCAD, Draft

place = FreeCAD.Placement(FreeCAD.Vector(1000, 0, 0), FreeCAD.Rotation())
Polygon1 = Draft.makePolygon(3, 750)
Polygon2 = Draft.makePolygon(5, 750, placement=place)

obj = [Polygon1, Polygon2]
vector = FreeCAD.Vector(2600, 500, 0)
cloned_object = Draft.clone(obj, delta=vector)

cloned_object.Fuse = True
FreeCAD.ActiveDocument.recompute()