├── .gitignore ├── CHANGELOG.md ├── Init.py ├── InitGui.py ├── LICENSE ├── README.md ├── addFC.py ├── addFC_Data.py ├── addFC_Export.py ├── addFC_Info.py ├── addFC_Logger.py ├── addFC_Other.py ├── addFC_Preference.py ├── addFC_Unfold.py ├── note ├── package.xml ├── repo ├── add │ ├── Library.md │ ├── Library.zip │ └── stdRU │ │ ├── OpenGost-A.ttf │ │ ├── hatch │ │ ├── 01.svg │ │ ├── 02.svg │ │ ├── 05.svg │ │ ├── 08.svg │ │ └── 09.svg │ │ └── tpl │ │ └── ЕСКД │ │ ├── RU_Landscape_A0.svg │ │ ├── RU_Landscape_A0_Full.svg │ │ ├── RU_Landscape_A1.svg │ │ ├── RU_Landscape_A1_Full.svg │ │ ├── RU_Landscape_A2.svg │ │ ├── RU_Landscape_A2_Full.svg │ │ ├── RU_Landscape_A3.svg │ │ ├── RU_Landscape_A3_Add.svg │ │ ├── RU_Landscape_A3_Full.svg │ │ ├── RU_Portrait_A4.svg │ │ ├── RU_Portrait_A4_Add.svg │ │ ├── RU_Portrait_A4_Full.svg │ │ ├── RU_Portrait_A4_T_1.svg │ │ ├── RU_Portrait_A4_T_1_Full.svg │ │ ├── RU_Portrait_A4_T_1a.svg │ │ ├── RU_Portrait_A4_T_9.svg │ │ ├── RU_Portrait_A4_T_9_Full.svg │ │ └── RU_Portrait_A4_T_9a.svg ├── doc │ ├── documentation_EN.pdf │ ├── documentation_EN.tex │ ├── documentation_RU.pdf │ ├── documentation_RU.tex │ ├── img │ │ ├── assembly_example.png │ │ ├── assistant.png │ │ ├── bom_export.png │ │ ├── bom_result.png │ │ ├── bom_result_ru.png │ │ ├── example.png │ │ ├── example_mc.png │ │ ├── exploded.png │ │ ├── exploded_d_result.png │ │ ├── exploded_m_result.png │ │ ├── exploded_result.png │ │ ├── exploded_set.png │ │ ├── info_bom.png │ │ ├── info_sm.png │ │ ├── k_en.png │ │ ├── k_ru.png │ │ ├── library.png │ │ ├── pipe.png │ │ ├── pipe_result.png │ │ ├── pref_materials.png │ │ ├── pref_other.png │ │ ├── pref_sm.png │ │ ├── pref_uProp.png │ │ ├── properties.png │ │ ├── properties_add.png │ │ ├── summary.png │ │ ├── toolbar.png │ │ └── toolbar.svg │ ├── other │ │ ├── explosion.gif │ │ └── k.FCStd │ ├── quickstart │ │ ├── addProp.gif │ │ └── addPropSM.gif │ ├── quickstart_EN.md │ └── stdRU.pdf ├── example.zip ├── icon │ ├── control.svg │ ├── display.svg │ ├── explode.svg │ ├── help.svg │ ├── info.svg │ ├── insert.svg │ ├── isolation.svg │ ├── library.svg │ ├── linker.svg │ ├── pipe.svg │ ├── preferences-addfc.svg │ ├── properties.svg │ ├── resent.svg │ ├── summary.svg │ ├── viewer.svg │ └── workbench.svg ├── localization │ ├── code.ts │ ├── code_ru.qm │ ├── code_ru.ts │ ├── ui.ts │ ├── ui_ru.qm │ └── ui_ru.ts └── ui │ ├── info.ui │ ├── info_set.ui │ ├── info_tessellation.ui │ ├── insert.ui │ ├── linker.ui │ ├── list.ui │ ├── pref_materials.ui │ ├── pref_other.ui │ ├── pref_sm.ui │ ├── pref_uProp.ui │ └── properties.ui └── utils ├── addFC_Explode.py ├── addFC_Explode.ui ├── addFC_Explode_set.ui ├── addFC_Isolation.py ├── addFC_Library.py ├── addFC_Library.ui ├── addFC_Library_set.ui ├── addFC_Pipe.FCStd ├── addFC_Pipe.py ├── addFC_Pipe.ui ├── addFC_Summary.py ├── addFC_Summary.ui ├── addFC_Viewer.py └── addFC_Viewer.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/Init.py -------------------------------------------------------------------------------- /InitGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/InitGui.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/README.md -------------------------------------------------------------------------------- /addFC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/addFC.py -------------------------------------------------------------------------------- /addFC_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/addFC_Data.py -------------------------------------------------------------------------------- /addFC_Export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/addFC_Export.py -------------------------------------------------------------------------------- /addFC_Info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/addFC_Info.py -------------------------------------------------------------------------------- /addFC_Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/addFC_Logger.py -------------------------------------------------------------------------------- /addFC_Other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/addFC_Other.py -------------------------------------------------------------------------------- /addFC_Preference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/addFC_Preference.py -------------------------------------------------------------------------------- /addFC_Unfold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/addFC_Unfold.py -------------------------------------------------------------------------------- /note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/note -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/package.xml -------------------------------------------------------------------------------- /repo/add/Library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/Library.md -------------------------------------------------------------------------------- /repo/add/Library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/Library.zip -------------------------------------------------------------------------------- /repo/add/stdRU/OpenGost-A.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/OpenGost-A.ttf -------------------------------------------------------------------------------- /repo/add/stdRU/hatch/01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/hatch/01.svg -------------------------------------------------------------------------------- /repo/add/stdRU/hatch/02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/hatch/02.svg -------------------------------------------------------------------------------- /repo/add/stdRU/hatch/05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/hatch/05.svg -------------------------------------------------------------------------------- /repo/add/stdRU/hatch/08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/hatch/08.svg -------------------------------------------------------------------------------- /repo/add/stdRU/hatch/09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/hatch/09.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A0.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A0_Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A0_Full.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A1.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A1_Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A1_Full.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A2.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A2_Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A2_Full.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A3.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A3_Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A3_Add.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A3_Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Landscape_A3_Full.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_Add.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_Full.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_1.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_1_Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_1_Full.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_1a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_1a.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_9.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_9_Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_9_Full.svg -------------------------------------------------------------------------------- /repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_9a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/add/stdRU/tpl/ЕСКД/RU_Portrait_A4_T_9a.svg -------------------------------------------------------------------------------- /repo/doc/documentation_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/documentation_EN.pdf -------------------------------------------------------------------------------- /repo/doc/documentation_EN.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/documentation_EN.tex -------------------------------------------------------------------------------- /repo/doc/documentation_RU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/documentation_RU.pdf -------------------------------------------------------------------------------- /repo/doc/documentation_RU.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/documentation_RU.tex -------------------------------------------------------------------------------- /repo/doc/img/assembly_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/assembly_example.png -------------------------------------------------------------------------------- /repo/doc/img/assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/assistant.png -------------------------------------------------------------------------------- /repo/doc/img/bom_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/bom_export.png -------------------------------------------------------------------------------- /repo/doc/img/bom_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/bom_result.png -------------------------------------------------------------------------------- /repo/doc/img/bom_result_ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/bom_result_ru.png -------------------------------------------------------------------------------- /repo/doc/img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/example.png -------------------------------------------------------------------------------- /repo/doc/img/example_mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/example_mc.png -------------------------------------------------------------------------------- /repo/doc/img/exploded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/exploded.png -------------------------------------------------------------------------------- /repo/doc/img/exploded_d_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/exploded_d_result.png -------------------------------------------------------------------------------- /repo/doc/img/exploded_m_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/exploded_m_result.png -------------------------------------------------------------------------------- /repo/doc/img/exploded_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/exploded_result.png -------------------------------------------------------------------------------- /repo/doc/img/exploded_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/exploded_set.png -------------------------------------------------------------------------------- /repo/doc/img/info_bom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/info_bom.png -------------------------------------------------------------------------------- /repo/doc/img/info_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/info_sm.png -------------------------------------------------------------------------------- /repo/doc/img/k_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/k_en.png -------------------------------------------------------------------------------- /repo/doc/img/k_ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/k_ru.png -------------------------------------------------------------------------------- /repo/doc/img/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/library.png -------------------------------------------------------------------------------- /repo/doc/img/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/pipe.png -------------------------------------------------------------------------------- /repo/doc/img/pipe_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/pipe_result.png -------------------------------------------------------------------------------- /repo/doc/img/pref_materials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/pref_materials.png -------------------------------------------------------------------------------- /repo/doc/img/pref_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/pref_other.png -------------------------------------------------------------------------------- /repo/doc/img/pref_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/pref_sm.png -------------------------------------------------------------------------------- /repo/doc/img/pref_uProp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/pref_uProp.png -------------------------------------------------------------------------------- /repo/doc/img/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/properties.png -------------------------------------------------------------------------------- /repo/doc/img/properties_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/properties_add.png -------------------------------------------------------------------------------- /repo/doc/img/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/summary.png -------------------------------------------------------------------------------- /repo/doc/img/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/toolbar.png -------------------------------------------------------------------------------- /repo/doc/img/toolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/img/toolbar.svg -------------------------------------------------------------------------------- /repo/doc/other/explosion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/other/explosion.gif -------------------------------------------------------------------------------- /repo/doc/other/k.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/other/k.FCStd -------------------------------------------------------------------------------- /repo/doc/quickstart/addProp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/quickstart/addProp.gif -------------------------------------------------------------------------------- /repo/doc/quickstart/addPropSM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/quickstart/addPropSM.gif -------------------------------------------------------------------------------- /repo/doc/quickstart_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/quickstart_EN.md -------------------------------------------------------------------------------- /repo/doc/stdRU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/doc/stdRU.pdf -------------------------------------------------------------------------------- /repo/example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/example.zip -------------------------------------------------------------------------------- /repo/icon/control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/control.svg -------------------------------------------------------------------------------- /repo/icon/display.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/display.svg -------------------------------------------------------------------------------- /repo/icon/explode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/explode.svg -------------------------------------------------------------------------------- /repo/icon/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/help.svg -------------------------------------------------------------------------------- /repo/icon/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/info.svg -------------------------------------------------------------------------------- /repo/icon/insert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/insert.svg -------------------------------------------------------------------------------- /repo/icon/isolation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/isolation.svg -------------------------------------------------------------------------------- /repo/icon/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/library.svg -------------------------------------------------------------------------------- /repo/icon/linker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/linker.svg -------------------------------------------------------------------------------- /repo/icon/pipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/pipe.svg -------------------------------------------------------------------------------- /repo/icon/preferences-addfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/preferences-addfc.svg -------------------------------------------------------------------------------- /repo/icon/properties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/properties.svg -------------------------------------------------------------------------------- /repo/icon/resent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/resent.svg -------------------------------------------------------------------------------- /repo/icon/summary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/summary.svg -------------------------------------------------------------------------------- /repo/icon/viewer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/viewer.svg -------------------------------------------------------------------------------- /repo/icon/workbench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/icon/workbench.svg -------------------------------------------------------------------------------- /repo/localization/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/localization/code.ts -------------------------------------------------------------------------------- /repo/localization/code_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/localization/code_ru.qm -------------------------------------------------------------------------------- /repo/localization/code_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/localization/code_ru.ts -------------------------------------------------------------------------------- /repo/localization/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/localization/ui.ts -------------------------------------------------------------------------------- /repo/localization/ui_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/localization/ui_ru.qm -------------------------------------------------------------------------------- /repo/localization/ui_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/localization/ui_ru.ts -------------------------------------------------------------------------------- /repo/ui/info.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/info.ui -------------------------------------------------------------------------------- /repo/ui/info_set.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/info_set.ui -------------------------------------------------------------------------------- /repo/ui/info_tessellation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/info_tessellation.ui -------------------------------------------------------------------------------- /repo/ui/insert.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/insert.ui -------------------------------------------------------------------------------- /repo/ui/linker.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/linker.ui -------------------------------------------------------------------------------- /repo/ui/list.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/list.ui -------------------------------------------------------------------------------- /repo/ui/pref_materials.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/pref_materials.ui -------------------------------------------------------------------------------- /repo/ui/pref_other.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/pref_other.ui -------------------------------------------------------------------------------- /repo/ui/pref_sm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/pref_sm.ui -------------------------------------------------------------------------------- /repo/ui/pref_uProp.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/pref_uProp.ui -------------------------------------------------------------------------------- /repo/ui/properties.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/repo/ui/properties.ui -------------------------------------------------------------------------------- /utils/addFC_Explode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Explode.py -------------------------------------------------------------------------------- /utils/addFC_Explode.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Explode.ui -------------------------------------------------------------------------------- /utils/addFC_Explode_set.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Explode_set.ui -------------------------------------------------------------------------------- /utils/addFC_Isolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Isolation.py -------------------------------------------------------------------------------- /utils/addFC_Library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Library.py -------------------------------------------------------------------------------- /utils/addFC_Library.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Library.ui -------------------------------------------------------------------------------- /utils/addFC_Library_set.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Library_set.ui -------------------------------------------------------------------------------- /utils/addFC_Pipe.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Pipe.FCStd -------------------------------------------------------------------------------- /utils/addFC_Pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Pipe.py -------------------------------------------------------------------------------- /utils/addFC_Pipe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Pipe.ui -------------------------------------------------------------------------------- /utils/addFC_Summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Summary.py -------------------------------------------------------------------------------- /utils/addFC_Summary.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Summary.ui -------------------------------------------------------------------------------- /utils/addFC_Viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Viewer.py -------------------------------------------------------------------------------- /utils/addFC_Viewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GS90/addFC/HEAD/utils/addFC_Viewer.ui --------------------------------------------------------------------------------