Part RefineShape/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "Po niektórych operacjach logicznych, takich jak Połączenie, pewne linie z poprzednich kształtów mogą pozostać widoczne. To narzędzie tworzy kopię wyn...")
(Created page with "'''Alternatywnie''', aby stworzyć inne kopie nieparametryczne użyj narzędzi {{Button|16px Szybka kopia}}, {{Button|Im...")
Line 24: Line 24:
Po niektórych operacjach logicznych, takich jak [[Part_Fuse/pl|Połączenie]], pewne linie z poprzednich kształtów mogą pozostać widoczne. To narzędzie tworzy kopię wyniku operacji logicznej i usuwa te szwy.
Po niektórych operacjach logicznych, takich jak [[Part_Fuse/pl|Połączenie]], pewne linie z poprzednich kształtów mogą pozostać widoczne. To narzędzie tworzy kopię wyniku operacji logicznej i usuwa te szwy.


'''Alternatively''', to produce other non-parametric copies use {{Button|[[Image:Part_SimpleCopy.svg|16px]] [[Part SimpleCopy|Simple Copy]]}}, {{Button|[[Image:Part_TransformedCopy.svg|16px]][[Part TransformedCopy|Transformed Copy]]}}, and {{Button|[[Image:Part_ElementCopy.svg|16px]] [[Part ElementCopy|Element Copy]]}}
'''Alternatywnie''', aby stworzyć inne kopie nieparametryczne użyj narzędzi {{Button|[[Image:Part_SimpleCopy.svg|16px]] [[Part_SimpleCopy/pl|Szybka kopia]]}}, {{Button|[[Image:Part_TransformedCopy.svg|16px]][[Part_TransformedCopy/pl|Przekształcona kopia]]}}, oraz {{Button|[[Image:Part_ElementCopy.svg|16px]] [[Part_ElementCopy/pl|Kopia kształtu elementu]]}}.


[[File:PartRefineShape_it.png]]
[[File:PartRefineShape_it.png]]

Revision as of 10:13, 23 September 2022

Część: Udoskonal kształt

Lokalizacja w menu
Część → Utwórz kopię → Udoskonal kształt
Środowisko pracy
Część
Domyślny skrót
brak
Wprowadzono w wersji
-
Zobacz także
Szybka kopia, Przekształcona kopia, Kopia kształtu elementu, Udoskonal kształt cechy

Opis

Narzędzie środowiska Część Udoskonal kształt tworzy nieparametryczną kopię o dopracowanym kształcie, czyli z "oczyszczonymi" niektórymi krawędziami i powierzchniami.

Po niektórych operacjach logicznych, takich jak Połączenie, pewne linie z poprzednich kształtów mogą pozostać widoczne. To narzędzie tworzy kopię wyniku operacji logicznej i usuwa te szwy.

Alternatywnie, aby stworzyć inne kopie nieparametryczne użyj narzędzi Szybka kopia, Przekształcona kopia, oraz Kopia kształtu elementu.

Original boolean result with 11 faces (left), and refined shape copy with 7 faces (right).

Usage

  1. Select an object that you wish to clean and copy.
  2. Go to the menu Part → Create a copy → Refine shape.
  3. A cleaned, independent copy of the original object is created; the original object is hidden.

As of version 0.19 and above the result defaults to a parametric (linked) copy.

This behavior can be changed in the Parameter editor:

  1. Go to the subgroup: BaseApp/Preferences/Mod/Part
  2. Change ParametricRefine of type Boolean to false to get the old behavior (independent copy).

See other parameters in Fine-tuning.

Notes

  • This function can be used as the last step in the modelling work to clean up shapes in a traditional constructive solid geometry workflow.
  • This function may help to clean up the model before applying another feature, such as a Fillet.
  • This clean up may stop 3D printers from printing unwanted edges once the solid model is exported to a mesh format.
  • This function can also be used after converting a mesh to a shape (ShapeFromMesh) to clean up the residual edges on flat faces.

Limitations

  • The refinement algorithm only works on shells. Therefore it iterates over the shells of the input shape and then for each shell it creates a new shell with joined faces wherever possible. This means that if your input shape is only a face, wire, edge or vertex then the algorithm does nothing.
  • Unlike the OpenSCAD RefineShapeFeature command, Part RefineShape won't update when the preceding shapes are changed.

Scripting

The Python command for refining a shape is the following:

shape.removeSplitter()