|
Menu location |
---|
Part Design → Hole |
Workbenches |
PartDesign |
Default shortcut |
None |
Introduced in version |
- |
See also |
PartDesign Pocket |
Instrumentul Hole găurește una sau mai multe găuri dintr-o schiță selectată. Pot fi setați mai mulți parametri, cum ar fi filetarea și mărimea, potrivirea, tipul orificiilor (locaș cap de șurub conic, cilindric, gaură dreaptă) și multe altele.
The centers of the circles and arcs are used to position the holes, but please note that their radii are not taken into account. The generated holes will be identical even if the radii vary.
Countersunk (to the left) and counterbored (to the right) holes cross section.
Depending on which selection is made, some fields will activate or stay disabled.
Much of the Data properties are the same as those shown in Options.
Cut types (screw-types) are defined in json files. There is a set of files distributed with FreeCAD, but users can create their own definitions. Files are searched in <UserAppDataDir>/PartDesign/Hole
. The UserAppDataDir
can be found by typing App.getUserAppDataDir()
in the Python console.
The file should contain:
countersink
or counterbore
.metric
or metricfine
.Example:
{
"name": "DIN 7984",
"cut_type": "counterbore",
"thread_type": "metric",
"data": [
{ "thread": "M2", "diameter": 4.3, "depth": 1.6 },
{ "thread": "M2.5", "diameter": 5.0, "depth": 2.0 },
…
]
}