Files
create/src/Mod/PartDesign/Resources/Hole/iso4762_7089.json
M G Berberich 7f328ac376 [PartDesign] Dynamic hole cut-types
‣ Make countersink and counterbore on metric holes freely definable by user.

‣ Fixed the Naming of M1.6, M2, M2.5 and M3.5

‣ Added constructor for custom enums from Enums to PropertyEnumeration

‣ Put definitions of cut-types (counterbore/countersink) for
  screwtypes into json-files for easy modification.

‣ Allow users to put its own definitions in json-files in
  [UserDir]/Mod/PartDesign/Resources/Hole

‣ Contains several examples of cut-type definition json-files that are
  propably not production-ready.

This uses a local copy of nlohmann::json¹ to read json-files.

__________
¹ This is a very nice,header-only C++ library under the MIT License
  (https://github.com/nlohmann/json). I copied the single-file-version
  and the forward-declaration-header into …/PartDesign/App/ so no new
  dependencies arise.
2020-10-31 12:49:00 +01:00

28 lines
1.2 KiB
JSON

{
"name": "ISO 4762 + 7089",
"cut_type": "counterbore",
"thread_type": "metric",
"data": [
{ "thread": "M2", "diameter": 6.0, "depth": 2.4 },
{ "thread": "M2.5","diameter": 7.0, "depth": 3.5 },
{ "thread": "M3", "diameter": 9.0, "depth": 3.9 },
{ "thread": "M3.5","diameter": 9.0, "depth": 4.4 },
{ "thread": "M4", "diameter": 10.0, "depth": 5.2 },
{ "thread": "M5", "diameter": 13.0, "depth": 6.4 },
{ "thread": "M6", "diameter": 15.0, "depth": 8.0 },
{ "thread": "M8", "diameter": 18.0, "depth": 10.2 },
{ "thread": "M10", "diameter": 24.0, "depth": 12.6 },
{ "thread": "M12", "diameter": 26.0, "depth": 15.1 },
{ "thread": "M14", "diameter": 30.0, "depth": 17.1 },
{ "thread": "M16", "diameter": 33.0, "depth": 16.6 },
{ "thread": "M18", "diameter": 36.0, "depth": 21.6 },
{ "thread": "M20", "diameter": 40.0, "depth": 23.6 },
{ "thread": "M22", "diameter": 43.0, "depth": 25.8 },
{ "thread": "M24", "diameter": 48.0, "depth": 29.8 },
{ "thread": "M27", "diameter": 54.0, "depth": 35.0 },
{ "thread": "M30", "diameter": 61.0, "depth": 38.0 },
{ "thread": "M33", "diameter": 63.0, "depth": 41.0 },
{ "thread": "M36", "diameter": 69.0, "depth": 42.0 }
]
}