FreeCAD

Форк
0
41 строка · 2.3 Кб
1
#***************************************************************************
2
#*   Copyright (c) 2001,2002 Juergen Riegel <juergen.riegel@web.de>        *
3
#*                                                                         *
4
#*   This file is part of the FreeCAD CAx development system.              *
5
#*                                                                         *
6
#*   This program is free software; you can redistribute it and/or modify  *
7
#*   it under the terms of the GNU Lesser General Public License (LGPL)    *
8
#*   as published by the Free Software Foundation; either version 2 of     *
9
#*   the License, or (at your option) any later version.                   *
10
#*   for detail see the LICENCE text file.                                 *
11
#*                                                                         *
12
#*   FreeCAD is distributed in the hope that it will be useful,            *
13
#*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
14
#*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
15
#*   GNU Lesser General Public License for more details.                   *
16
#*                                                                         *
17
#*   You should have received a copy of the GNU Library General Public     *
18
#*   License along with FreeCAD; if not, write to the Free Software        *
19
#*   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  *
20
#*   USA                                                                   *
21
#*                                                                         *
22
#***************************************************************************/
23

24
# FreeCAD init script of the OpenSCAD module
25

26
import os
27
import FreeCAD
28

29
FreeCAD.addImportType("OpenSCAD CSG Format (*.csg *.CSG)", "importCSG")
30

31
param = FreeCAD.ParamGet(\
32
        "User parameter:BaseApp/Preferences/Mod/OpenSCAD")
33
openscadfilename = param.GetString('openscadexecutable')
34
openscadbin = openscadfilename and os.path.isfile(openscadfilename)
35

36
if openscadbin:
37
    FreeCAD.addImportType("OpenSCAD Format (*.scad *.SCAD)", "importCSG")
38
    FreeCAD.__unit_test__ += ["TestOpenSCADApp"]
39

40
FreeCAD.addExportType("OpenSCAD CSG Format (*.csg)", "exportCSG")
41
FreeCAD.addExportType("OpenSCAD Format (*.scad)", "exportCSG")
42

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.