Part ElementCopy/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 31: Line 31:


# Select a vertex, edge, or face of an object for which you wish to make a copy.
# Select a vertex, edge, or face of an object for which you wish to make a copy.
# Go to the menu {{MenuCommand|Part → Create a copy → [[File:Part ElementCopy.svg|16px]] [[Part ElementCopy|Create shape element copy]]}}.
# Go to the menu {{MenuCommand|Part → Create a copy → [[File:Part_ElementCopy.svg|16px]] [[Part_ElementCopy|Create shape element copy]]}}.


==Properties==
==Properties==
Line 37: Line 37:
=== Data ===
=== Data ===


The copy has a simple {{PropertyData|Placement}} property like any other [[Part Feature|Part Feature]].
The copy has a simple {{PropertyData|Placement}} property like any other [[Part_Feature|Part Feature]].


=== View ===
=== View ===


The copy has simple view properties like any other [[Part Feature|Part Feature]].
The copy has simple view properties like any other [[Part_Feature|Part Feature]].


==Scripting==
==Scripting==
Line 51: Line 51:
}}
}}


The selection can be manual (by using the mouse), or via the [[Python_Console|Python Console]].<br>
The selection can be manual (by using the mouse), or via the [[Python_console|Python Console]].<br>
To know more about selecting objects programmatically, refer to [[Selection_methods|Selection methods]].
To know more about selecting objects programmatically, refer to [[Selection_methods|Selection methods]].



Revision as of 08:59, 18 March 2021

This documentation is not finished. Please help and contribute documentation.

GuiCommand model explains how commands should be documented. Browse Category:UnfinishedDocu to see more incomplete pages like this one. See Category:Command Reference for all commands.

See WikiPages to learn about editing the wiki pages, and go to Help FreeCAD to learn about other ways in which you can contribute.

Part ElementCopy

Системное название
Part ElementCopy
Расположение в меню
Part → Create a copy → Create shape element copy
Верстаки
Part
Быстрые клавиши
Нет
Представлено в версии
0.19
См. также
SimpleCopy, TransformedCopy, RefineShape

Описание

Part ElementCopy produces a non-parametric copy of a sub-element of a particular object, that is, of a vertex, edge, or face.

To produce complete non-parametric copies of the objects use Simple Copy, Transformed Copy, or RefineShape

Использование

  1. Select a vertex, edge, or face of an object for which you wish to make a copy.
  2. Go to the menu Part → Create a copy → Create shape element copy.

Properties

Data

The copy has a simple ДанныеPlacement property like any other Part Feature.

View

The copy has simple view properties like any other Part Feature.

Scripting

The Part ElementCopy command can be applied after selecting one or more objects in the Tree view:

FreeCADGui.runCommand('Part_ElementCopy')

The selection can be manual (by using the mouse), or via the Python Console.
To know more about selecting objects programmatically, refer to Selection methods.