Part: Rafinarea Formei

From FreeCAD Documentation
Revision as of 22:00, 26 February 2020 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Part RefineShape

Menu location
Part → Refine Shape
Workbenches
Part
Default shortcut
None
Introduced in version
-
See also
OpenSCAD Refine Shape Feature

Descriere

Curata liniile inutile. După o operație booleană, unele linii care definesc forma anterioară rămân vizibile, această unealtă creează o copie total curățată a originalului.

The Part RefineShape produces a non-parametric copy with a refined shape, that is, with certain edges and faces cleaned up.

After certain boolean operations, like Part Union, some lines from the previous shapes main remain visible. This tool produces a copy of that boolean result, and cleans up those seams.

Alternatively, to produce other non-parametric copies use Simple Copy, Transformed Copy, and Element Copy

Utilizare

  1. Selectați forma de curățat.
  2. Click pe meniul Part → Refine shape .
  • O copie a obiectului este creată și complet curățată, obiectul original este randat.
  • Copia nou creată este independentă de original.
  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.

Limitări

  • Algoritmul de rafinare funcționează numai pe cochilii. Prin urmare, acesta iterează peste cochilia formei de intrare și apoi pentru fiecare coajă creează o coajă nouă cu fațete fizionate ori de câte ori este posibil. Aceasta înseamnă că, dacă forma dvs. de intrare este doar o fațetă, un filament/polilinie sârmă, o margine sau un vârf, atunci algoritmul nu face nimic.
  • Spre deosebire deRefineShapeFeature în Atelierul OpenSCAD, această funcți(e)onalitate nu se va actualiza când se schimbă formele precedente.
  • 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.

Note

  • funcția nu modifică forma existentă, dar returnează o nouă formă
  • funcția este folosită în mod normal ca ultim pas în istoricul de modelare
  • funcția poate ajuta la obținerea rotunjirilor dificile pentru de lucrat
  • funcția este destinată să împiedice imprimantele 3D să printeze marginile nedorite
  • funcția poate fi utilizată după transformarea unei rețele în formă pentru a curăța marginile reziduale pe fațetele plane.
  • 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.

Script

Comanda Python pentru rafinarea formei este următoarea:

shape.removeSplitter()