Mesh Module/pl

From FreeCAD Documentation
Revision as of 21:48, 9 June 2010 by Kwahoo (talk | contribs)

Warsztat Mesh Workbench obejmuje siatki trójkątów. Siatki są specjalnym typem obiektów 3D, złożonym z trójkątów połączonych przez ich krawędzie i narożniki (zwane także wierzchołkami).

Przykład obiektu siatki

Przykład obiektu siatki

Wiele aplikacji 3D używa siatek jako podstawowych obiektów 3D, jak sketchup, blender, maya czy 3d studio max. Ponieważ siatki są bardzo prostymi obiektami, zawierającymi tylko wierzchołki (punkty), krawędzie i (trójkątne) ściany, są one bardzo łatwe do tworzenia, modyfikowania, dzielenia, rozciągania i mogą być łatwo przenoszone, bez żadnych strat, z jednej aplikacji do drugiej. Ponadto, dzięki temu że siatki zawierają bardzo proste dane, aplikacje 3D mogą operować na bardzo dużej ich ilości beż żadnych problemów. Z tych powodów, siatki są często obiektami 3D w aplikacjach 3D do tworzenia filmów, animacji i obrazów.

Jednak w sektorze inżynierii siatki mają dużo ograniczeń: Są one bardzo "tępymi" obiektami, złożonymi tylko z punktów, linii i ścian. Są one tylko powierzchniami, nie mają informacji o masie, więc nie zachowują się jako lite bryły. W siatce nie ma automatycznego sposobu by stwierdzić czy dany punkt jest w środku czy na zewnątrz obiektu. To oznacza, że wszystkie operacje dla brył litych, jak dodawanie lub wycinanie, są trochę trudniejsze do uzyskania na siatkach i częściej zwracają błędy.

In FreeCAD, since it is an engineering application, we would obviously prefer to work with more intelligent types of 3D objects, that can carry more informations, such as mass, solid behaviour, or even custom parameters. The mesh module was first created to serve as a testbed, but be able to read, manipulate and convert meshes is also highly important for FreeCAD. Very often, in your workflow, you will receive 3D data in mesh format. You will need to handle that data, analyse it to detect errors or other problems that prevent converting them to more intelligent objects, and finally, convert them to more intelligent objects, handled by the Part Module.

Using the mesh module

The mesh module has currently a very simple interface, all its functions are grouped in the Mesh menu entry. The most important operations you can currently do with meshes are:

  • Import meshes in several file formats
  • Export meshes in several file formats
  • Convert Part objects into meshes
  • Analyse curvature, faces, and check if a mesh can be safely converted into a solid
  • Flip mesh normals
  • Close holes in meshes
  • Remove faces of meshes
  • Union, subtract and intersect meshes
  • Create mesh primitives, like cubes, spheres, cones or cylinders
  • Cut meshes along a line

These are only some of the basic operations currently present in the Mesh module interface. But the FreeCAD meshes can also be handled in many more ways by scripting.

Workbenches/pl
Part Module/pl