Part Point/cs: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
{{GuiCommand/cs|Name=Part Point|Name/cs=Díl Bod|MenuLocation=Díl → [[Part_CreatePrimitives/cs|Vytváření zákl.geom.tvarů]] → Bod|Workbenches=[[Part Module/cs|Díl]], [[OpenSCAD_Module/cs|OpenSCAD]]|SeeAlso=..}}


{{Docnav
|[[Part_Ellipse|Ellipse]]
|[[Part_Line|Line]]
|[[Part_Workbench|Part]]
|IconL=Part_Ellipse.svg
|IconR=Part_Line.svg
|IconC=Workbench_Part.svg
}}


<div class="mw-translate-fuzzy">
{{GuiCommand/cs|Name=Part Point|Name/cs=Díl Bod|MenuLocation=Díl → [[Part_CreatePrimitives/cs|Vytváření zákl.geom.tvarů]] → Bod|Workbenches=[[Part_Workbench/cs|Díl]], [[OpenSCAD_Workbench/cs|OpenSCAD]]|SeeAlso=..}}
</div>

== Description ==

<div class="mw-translate-fuzzy">
== Popis ==
== Popis ==
Bod (vrchol) základního geometrického tělesa je dostupný z dialogového okna Vytvoření základního geometrického tělesa v pracovní ploše Díl.
Bod (vrchol) základního geometrického tělesa je dostupný z dialogového okna Vytvoření základního geometrického tělesa v pracovní ploše Díl.
</div>


==Usage==
The Create Primitives dialogue can be accessed via the [[Part_CreatePrimitives|CreatePrimitives]] icon [[Image:Part_CreatePrimitives.png|32px]] located in the Part menu or the Part toolbar, in the Part Workbench.


See [[Part_Primitives#Usage|Part Primitives]].


== Properties ==
===Geometric Primitives===
{|
| [[File:PartVertexPrimitivesOptions_it.png]]
|
Point
====Parameter====
* {{Parameter|X}}
* {{Parameter|Y}}
* {{Parameter|Z}}
====Location====
*
*
*
|}
===Property===
{|
| [[File:PartVertexProperty_it.png|left]]
|
==== View ====
..
==== Data ====
{{KEY|Base}}<br />
* {{ProprietaDati|Label}}:
* {{ProprietaDati|Placement}}: [[Placement|placement]]
* {{ProprietaDati|X}} :
* {{ProprietaDati|Y}} :
* {{ProprietaDati|Z}} :
|}
{{clear}}


See also: [[Property_editor|Property editor]].
{{clear}}

<languages/>
A Part Point object is derived from a [[Part_Feature|Part Feature]] object and inherits all its properties. It also has the following additional properties:

=== Data ===

{{TitleProperty|Attachment}}

The object has the same attachment properties as a [[Part_Part2DObject#Data|Part Part2DObject]].

{{TitleProperty|Base}}

* {{PropertyData|X|Distance}}: The X coordinate of the point. The default is {{Value|0mm}}.
* {{PropertyData|Y|Distance}}: The Y coordinate of the point. The default is {{Value|0mm}}.
* {{PropertyData|Z|Distance}}: The Z coordinate of the point. The default is {{Value|0mm}}.

== Scripting ==

See also: [https://freecad.github.io/SourceDoc/ Autogenerated API documentation], [[Part_scripting|Part scripting]] and [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

A Part Point can be created with the {{Incode|addObject()}} method of the document:

{{Code|code=
point = FreeCAD.ActiveDocument.addObject("Part::Vertex", "myPoint")
}}

* Where {{Incode|"myPoint"}} is the name for the object.
* The function returns the newly created object.

Example:

{{Code|code=
import FreeCAD as App

doc = App.activeDocument()

point = doc.addObject("Part::Vertex", "myPoint")
point.X = 1
point.Y = 2
point.Z = 3

doc.recompute()
}}


{{Docnav
|[[Part_Ellipse|Ellipse]]
|[[Part_Line|Line]]
|[[Part_Workbench|Part]]
|IconL=Part_Ellipse.svg
|IconR=Part_Line.svg
|IconC=Workbench_Part.svg
}}

{{Part_Tools_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Latest revision as of 10:27, 3 March 2022

Díl Bod

Umístění Menu
Díl → Vytváření zákl.geom.tvarů → Bod
Pracovní stoly
Díl, OpenSCAD
Výchozí zástupce
Nikdo
Představen ve verzi
-
Viz také
..

Description

Popis

Bod (vrchol) základního geometrického tělesa je dostupný z dialogového okna Vytvoření základního geometrického tělesa v pracovní ploše Díl.

Usage

See Part Primitives.

Properties

See also: Property editor.

A Part Point object is derived from a Part Feature object and inherits all its properties. It also has the following additional properties:

Data

Attachment

The object has the same attachment properties as a Part Part2DObject.

Base

  • ÚdajeX (Distance): The X coordinate of the point. The default is 0mm.
  • ÚdajeY (Distance): The Y coordinate of the point. The default is 0mm.
  • ÚdajeZ (Distance): The Z coordinate of the point. The default is 0mm.

Scripting

See also: Autogenerated API documentation, Part scripting and FreeCAD Scripting Basics.

A Part Point can be created with the addObject() method of the document:

point = FreeCAD.ActiveDocument.addObject("Part::Vertex", "myPoint")
  • Where "myPoint" is the name for the object.
  • The function returns the newly created object.

Example:

import FreeCAD as App

doc = App.activeDocument()

point = doc.addObject("Part::Vertex", "myPoint")
point.X = 1
point.Y = 2
point.Z = 3

doc.recompute()