Constructive solid geometry/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>

{{TOCright}}
{{TOCright}}
== Введение ==
== Введение ==
Line 6: Line 5:
[https://en.wikipedia.org/wiki/Constructive_solid_geometry Constructive solid geometry] ('''CSG''') is a modelling paradigm that is used in many traditional CAD systems. It essentially consists of using primitive solid objects and doing boolean operations with them, such as fusion, subtraction and intersection, in order to create a final shape.
[https://en.wikipedia.org/wiki/Constructive_solid_geometry Constructive solid geometry] ('''CSG''') is a modelling paradigm that is used in many traditional CAD systems. It essentially consists of using primitive solid objects and doing boolean operations with them, such as fusion, subtraction and intersection, in order to create a final shape.


In FreeCAD, this method is mostly utilized with the [[Image:Workbench_Part.svg|24px]] [[Part Workbench|Part Workbench]], which has the ability of creating primitive objects like [[Image:Part_Box.svg|24px]] [[Part Box|boxes]], [[Image:Part_Cylinder.svg|24px]] [[Part Cylinder|cylinders]], and [[Image:Part_Sphere.svg|24px]] [[Part Sphere|spheres]] and fuse them together, or use them to cut other objects with tools like {{Button|[[Image:Part Cut.png|24px]] [[Part Cut|Part Cut]]}}. '''Note:''' A [[PartDesign Body|PartDesign Body]] created with the [[PartDesign Workbench|PartDesign Workbench]] can also be used in a boolean operation with other objects.
In FreeCAD, this method is mostly utilized with the [[Image:Workbench_Part.svg|24px]] [[Part Workbench|Part Workbench]], which has the ability of creating primitive objects like [[Image:Part_Box.svg|24px]] [[Part Box|boxes]], [[Image:Part_Cylinder.svg|24px]] [[Part Cylinder|cylinders]], and [[Image:Part_Sphere.svg|24px]] [[Part Sphere|spheres]] and fuse them together, or use them to cut other objects with tools like {{Button|[[Image:Part_Cut.svg|24px]] [[Part Cut|Part Cut]]}}. '''Note:''' A [[PartDesign Body|PartDesign Body]] created with the [[PartDesign Workbench|PartDesign Workbench]] can also be used in a boolean operation with other objects.


[[Image:Part_Constructive_Solid_Geometry_workflow.svg|800px]]
[[Image:Part_Constructive_Solid_Geometry_workflow.svg|800px]]

Revision as of 18:11, 22 February 2020

Введение

Constructive solid geometry (CSG) is a modelling paradigm that is used in many traditional CAD systems. It essentially consists of using primitive solid objects and doing boolean operations with them, such as fusion, subtraction and intersection, in order to create a final shape.

In FreeCAD, this method is mostly utilized with the Part Workbench, which has the ability of creating primitive objects like boxes, cylinders, and spheres and fuse them together, or use them to cut other objects with tools like Part Cut. Note: A PartDesign Body created with the PartDesign Workbench can also be used in a boolean operation with other objects.

Constructive solid geometry (CSG) workflow; any number of operations can be done on solid primitives to create other solid objects, and then fuse or cut them until the final shape is produced.

The PartDesign Workbench uses a more modern approach than simple CSG; this method is called feature editing, which means creating a base solid, and then adding sequential parametric transformations to obtain a final body.

Пример

Example of constructive solid geometry (CSG) workflow: primitive parts are fused (union); the intersection of two other primitive parts is calculated (common); the difference (cut) of the two previous shapes is obtained.

Учебники

The tutorials page provides some examples on creating solids with the Part Workbench that use the CSG method.