TechDraw Quadrants/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/pl |Dodaj wierzchołek punktu środkowego |Dodaj linię środkową do ściany |środowisko pracy Rysunek Techniczny |IconL=TechDraw_Midpoints.svg |IconR=TechDraw_FaceCenterLine.svg |IconC=Workbench_TechDraw.svg }}")
(Created page with "==Opis==")
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/pl
|Name=TechDraw Quadrants
|Name=TechDraw Quadrants
|Name/pl=Rysunek Techniczny: Dodaj wierzchołki kwadrantu
|MenuLocation=TechDraw → Add Vertices → Add Quadrant Vertices
|MenuLocation=Rysunek Techniczny → Dodaj wierzchołki → Dodaj wierzchołki kwadrantu
|Workbenches=[[TechDraw_Workbench|TechDraw]]
|Workbenches=[[TechDraw_Workbench/pl|Rysunek Techniczny]]
|Version=0.19
|Version=0.19
|SeeAlso=[[TechDraw_CosmeticVertex|TechDraw Cosmetic Vertex]], [[TechDraw_Midpoints|TechDraw Midpoint]]
|SeeAlso=[[TechDraw_CosmeticVertex/pl|Wstaw wierzchołek kosmetyczny]], [[TechDraw_Midpoints/pl|Dodaj wierzchołek punktu środkowego]]
}}
}}


==Description==
<span id="Description"></span>
==Opis==


The '''TechDraw Quadrant''' tool adds three [[TechDraw_CosmeticVertex|Cosmetic Vertices]] along the length of one or more selected edges. The vertices are placed at 25%, 50% and 75% of the length. For a circular edge this results in cosmetic vertices at 90°, 180° and 270°, in addition to its geometric vertex at 0°.
The '''TechDraw Quadrant''' tool adds three [[TechDraw_CosmeticVertex|Cosmetic Vertices]] along the length of one or more selected edges. The vertices are placed at 25%, 50% and 75% of the length. For a circular edge this results in cosmetic vertices at 90°, 180° and 270°, in addition to its geometric vertex at 0°.

Revision as of 06:59, 22 July 2023

Rysunek Techniczny: Dodaj wierzchołki kwadrantu

Lokalizacja w menu
Rysunek Techniczny → Dodaj wierzchołki → Dodaj wierzchołki kwadrantu
Środowisko pracy
Rysunek Techniczny
Domyślny skrót
brak
Wprowadzono w wersji
0.19
Zobacz także
Wstaw wierzchołek kosmetyczny, Dodaj wierzchołek punktu środkowego

Opis

The TechDraw Quadrant tool adds three Cosmetic Vertices along the length of one or more selected edges. The vertices are placed at 25%, 50% and 75% of the length. For a circular edge this results in cosmetic vertices at 90°, 180° and 270°, in addition to its geometric vertex at 0°.

Cosmetic vertices at quadrant points of a circle

Usage

  1. Select one or more Edges in a View. Any edge can be selected, not just circles.
  2. Press the Add Quadrant Vertices button.
  3. Cosmetic vertices will be added at the quarter-points of the edges.

To delete a Quadrant Vertex, select it and use the toolbar button Remove Cosmetic Object.

Properties

Cosmetic Vertices have no properties of their own, as they are not Document Objects. They share color and size settings with regular geometry vertices.

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

Cosmetic Vertices are not accessible from macros or the Python console at this time. This snippet will remove all Cosmetic Vertices from the View.

>>> v = App.ActiveDocument.View
>>> v.clearCV()
>>> App.activeDocument().recompute()