Jump to content

アドオン

From FreeCAD Documentation
This page is a translated version of the page Addon and the translation is 91% complete.

概要

FreeCADと本ドキュメンテーションにおいてアドオンとは、基本インストールには含まれないが後から追加することが可能なコンポーネントのことを言います。

アドオンの種類

アドオンには3種類あります。

  • マクロは、新しいツールや機能を提供するPythonコードで、.FCMacroという拡張子をもつ単一のファイルに含まれています。
  • ワークベンチは特定の目的のためのGUIコマンド(またはツール)を提供する複数のPythonファイルをまとめたものです。例えば、棚を設計するためのツール、建築設計をするためのツール、ボートを設計するためのツール、などです。ワークベンチは、通常はコマンドのボタンが並んだ新しいツールバーを提供します。
  • 設定パックは、ユーザー設定集をまとめて配布・共有するものです。introduced in 0.20

インストール

アドオンをインストール際は、 アドオンマネージャーを利用するのがおすすめです。

マクロやワークベンチは、手動でインストールすることも可能です。

開発者のための情報

If you have developed a macro or workbench, and want to see it included in the Addon manager, read how to do so on the repository pages: (FreeCAD-addons and FreeCAD-macros). If you add your macro to the Macros recipes page, there is nothing else to do, it will automatically be picked up by the Addon manager.

参考