Std Group/tr: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav
{{Docnav
|[[Std Part|Part]]
|[[Std_Part|Part]]
|[[Std_LinkMake|LinkMake]]
|[[PartDesign Body|Create body]]
|[[Std_Base|Std Base]]
|[[PartDesign_Workbench|PartDesign]]
|IconL=Std_Part.png
|IconL=Std_Part.svg
|IconR=Std_LinkMake.svg
|IconC=Workbench_PartDesign.svg
|IconC=Freecad.svg
|IconR=PartDesign Body.png
}}
}}


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
{{GuiCommand/tr
{{GuiCommand/tr|Name=Grup Oluştur|MenuLocation=Ağaç görünüm → Belge üzerine sağ tıkla||Workbenches=Hepsi|Shortcut=|SeeAlso=[[Draft_SelectGroup|Taslak grup seçme]], [[Draft_AddToGroup|Taslak gruba ekle]]}}
|Name=Std Group
|Name/tr=Grup Oluştur
|MenuLocation=Ağaç görünüm → Belge üzerine sağ tıkla
|Workbenches=Hepsi
|Shortcut=
|SeeAlso=[[Draft_SelectGroup|Taslak grup seçme]], [[Draft_AddToGroup|Taslak gruba ekle]]
}}
</div>
</div>


== Tanım ==
== Tanım ==


<div class="mw-translate-fuzzy">
Bu komut, ağaç görünümünde bir grup oluşturmanıza olanak sağlar.
Bu komut, ağaç görünümünde bir grup oluşturmanıza olanak sağlar.
<br />
<br />
Modelinizin yapısını düzenlemek için kullanılabilir.
Modelinizin yapısını düzenlemek için kullanılabilir.
</div>


The Std Group tool is not defined by a particular workbench, but by the base system, thus it is found in the {{MenuCommand|structure toolbar}} that is available in all [[Workbenches|workbenches]].

To group 3D objects as a single unit, with the intention of creating assemblies, use [[Std_Part|Std Part]] instead.

<div class="mw-translate-fuzzy">
[[Image:group_with_objects.png|300px]]
</div>

{{Caption|Various elements inside Std Groups in the tree view.}}

<div class="mw-translate-fuzzy">
== Kullanım ==
== Kullanım ==
</div>


<div class="mw-translate-fuzzy">
Ağaç görünümünde FreeCAD belgenizin adına sağ tıklayın ve "grup" seçeneğini seçin.
Ağaç görünümünde FreeCAD belgenizin adına sağ tıklayın ve "grup" seçeneğini seçin.
<br />
<br />
Line 35: Line 57:
İşaret bir "artı" sembolüne döndüğü anda nesneyi buraya bırakmak mümkündür.
İşaret bir "artı" sembolüne döndüğü anda nesneyi buraya bırakmak mümkündür.
<br />
<br />
</div>


== Özellikler ==
#[[Document structure|Ağaç Görünümünde]] etkin belgeye veya mevcut gruba sağ tıklayın ve {{KEY|Grup Oluştur...}} seçin
#Nesneleri gruba sürükleyip bırakın


The [[Std_Group|Std Group]], internally called [[App_DocumentObjectGroup|App DocumentObjectGroup]] ({{incode|App::DocumentObjectGroup}} class), is derived from the basic [[App_DocumentObject|App DocumentObject]] ({{incode|App::DocumentObject}} class) and inherits all its properties.


The Std Group has the same properties as the [[App_FeaturePython#Properties|App FeaturePython]], which is the most basic instance of an [[App_DocumentObject|App DocumentObject]]. It also has the following additional properties in the [[Property_editor|property editor]]. Hidden properties can be shown by using the {{MenuCommand|Show all}} command in the context menu of the [[Property_editor|property editor]].
[[Image:group_with_objects.png|300px]]


== Seçenekler ==
=== Data ===


{{TitleProperty|Base}}
*Grubu yeniden adlandırmak için bir grup seçin ve {{KEY|F2}} tuşuna basın veya bir gruba sağ tıklayın ve
{{KEY|Yeniden adlandır}} seçin.

== Özellikler ==


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 55: Line 75:
== Betik ==
== Betik ==


<div class="mw-translate-fuzzy">
Aşağıdaki komut aktif belgeye yeni grup ekler:
Aşağıdaki komut aktif belgeye yeni grup ekler:
</div>

See [[Part_Feature|Part Feature]] for the general information on adding objects to the document.

A Std Group ([[App_DocumentObjectGroup|App DocumentObjectGroup]]) is created with the {{incode|addObject()}} method of the document. Once a Group exists, other objects can be added to it with the {{incode|addObject()}} or {{incode|addObjects()}} methods.


{{Code|code=
{{Code|code=
import FreeCAD as App
App.ActiveDocument.addObject("App::DocumentObjectGroup","Group")

doc = App.newDocument()
group = App.ActiveDocument.addObject("App::DocumentObjectGroup", "Group")

obj1 = App.ActiveDocument.addObject("PartDesign::Body", "Body")
obj2 = App.ActiveDocument.addObject("Part::Box", "Box")

group.addObjects([obj1, obj2])
App.ActiveDocument.recompute()
}}
}}
== Sınırlamalar ==


This basic {{incode|App::DocumentObjectGroup}} doesn't have a Proxy object so it can't be fully used for sub-classing.
Komutun çalışması için açık bir FreeCAD belgesi olmalıdır.

For [[Python|Python]] subclassing you should create a {{incode|App::DocumentObjectGroupPython}} object.

{{Code|code=
import FreeCAD as App

doc = App.newDocument()
obj = App.ActiveDocument.addObject("App::DocumentObjectGroupPython", "Name")
obj.Label = "Custom label"
}}

For example, a [[FEM Analysis|FEM Analysis]] is an {{incode|App::DocumentObjectGroupPython}} object with a custom icon and additional properties.


== Linkler ==
== Linkler ==


<div class="mw-translate-fuzzy">
* [[Arch tutorial#Organizing your model/tr|Use case in Arch Tutorial]]
* [[Arch tutorial#Organizing your model/tr|Use case in Arch Tutorial]]
* [[Document_structure/tr|Belge Yapısı]]
* [[Document_structure/tr|Belge Yapısı]]
* [http://www.freecadweb.org/wiki/index.php?title=Arch_tutorial#Organizing_your_model Modelinizi düzenleyin]
* [http://www.freecadweb.org/wiki/index.php?title=Arch_tutorial#Organizing_your_model Modelinizi düzenleyin]
</div>
* [[Ways_To_Organize_Objects/tr|Belge içerisindeki nesneyi düzenleme]]

== Notlar ==




{{Docnav
{{Docnav
|[[Std Part|Part]]
|[[Std_Part|Part]]
|[[Std_LinkMake|LinkMake]]
|[[PartDesign Body|Create body]]
|[[Std_Base|Std Base]]
|[[PartDesign_Workbench|PartDesign]]
|IconL=Std_Part.png
|IconL=Std_Part.svg
|IconR=Std_LinkMake.svg
|IconC=Workbench_PartDesign.svg
|IconC=Freecad.svg
|IconR=PartDesign Body.png
}}
}}


{{Std_Base_navi{{#translation:}}}}
{{Std Base}}
{{Userdocnavi{{#translation:}}}}

{{Userdocnavi}}

Latest revision as of 08:07, 22 February 2022

Grup Oluştur

Menü konumu
Ağaç görünüm → Belge üzerine sağ tıkla
Tezgahlar
Hepsi
Varsayılan kısayol
Hiçbiri
Versiyonda tanıtıldı
-
Ayrıca bkz
Taslak grup seçme, Taslak gruba ekle

Tanım

Bu komut, ağaç görünümünde bir grup oluşturmanıza olanak sağlar.
Modelinizin yapısını düzenlemek için kullanılabilir.

The Std Group tool is not defined by a particular workbench, but by the base system, thus it is found in the structure toolbar that is available in all workbenches.

To group 3D objects as a single unit, with the intention of creating assemblies, use Std Part instead.

Various elements inside Std Groups in the tree view.

Kullanım

Ağaç görünümünde FreeCAD belgenizin adına sağ tıklayın ve "grup" seçeneğini seçin.
Bir grup otomatik olarak oluşturulacak ve bir dizin simgesi ve otomatik olarak seçilen bir isim verilecektir.
Grubu sağ tıklayıp "yeniden adlandır" ı seçerek veya klavyenizdeki "F2" yi kullanarak grubu yeniden adlandırabilirsiniz.
FreeCAD nesnelerini grubun içine itin veya istediğiniz nesneyi tıklatarak gruptan çıkarın,
farenin sol düğmesini basılı tutun ve nesneyi istediğiniz yeni konuma sürüklemek için sürükle ve bırak stilini kullanın.
İmlecin altına bir "köşegen çizgisi olan bir daire" olduğu sürece, nesnenizi buraya bırakamazsınız.
İşaret bir "artı" sembolüne döndüğü anda nesneyi buraya bırakmak mümkündür.

Özellikler

The Std Group, internally called App DocumentObjectGroup (App::DocumentObjectGroup class), is derived from the basic App DocumentObject (App::DocumentObject class) and inherits all its properties.

The Std Group has the same properties as the App FeaturePython, which is the most basic instance of an App DocumentObject. It also has the following additional properties in the property editor. Hidden properties can be shown by using the Show all command in the context menu of the property editor.

Data

Base

  • VeriLabel: Grubun ismi

Betik

Aşağıdaki komut aktif belgeye yeni grup ekler:

See Part Feature for the general information on adding objects to the document.

A Std Group (App DocumentObjectGroup) is created with the addObject() method of the document. Once a Group exists, other objects can be added to it with the addObject() or addObjects() methods.

import FreeCAD as App

doc = App.newDocument()
group = App.ActiveDocument.addObject("App::DocumentObjectGroup", "Group")

obj1 = App.ActiveDocument.addObject("PartDesign::Body", "Body")
obj2 = App.ActiveDocument.addObject("Part::Box", "Box")

group.addObjects([obj1, obj2])
App.ActiveDocument.recompute()

This basic App::DocumentObjectGroup doesn't have a Proxy object so it can't be fully used for sub-classing.

For Python subclassing you should create a App::DocumentObjectGroupPython object.

import FreeCAD as App

doc = App.newDocument()
obj = App.ActiveDocument.addObject("App::DocumentObjectGroupPython", "Name")
obj.Label = "Custom label"

For example, a FEM Analysis is an App::DocumentObjectGroupPython object with a custom icon and additional properties.

Linkler