X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAPI%2Fmodel%2F__init__.py;h=e0c625f4d82c824ed3e3aa09bab251e3717ae224;hb=ca95b8880b63f9998cb09d3ea7d91716f3ea4390;hp=1f90375a49a0758b9fbb3800a30aab3ffe477bb0;hpb=5f6c330407814e80848bb6b354fad1ff4c29ad28;p=modules%2Fshaper.git diff --git a/src/PythonAPI/model/__init__.py b/src/PythonAPI/model/__init__.py index 1f90375a4..e0c625f4d 100644 --- a/src/PythonAPI/model/__init__.py +++ b/src/PythonAPI/model/__init__.py @@ -1,19 +1,46 @@ +# Copyright (C) 2015-2020 CEA/DEN, EDF R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# """This package defines the Parametric Geometry API of the Modeler. + +All features are available via model.add*() functions. Exceptions are: +- exportToFile() - from Exchange plugin +- duplicatePart(), removePart() - from PartSet plugin +- exportToGEOM() - from Connection plugin """ # General purpose functions and abstract root classes -from services import * -from roots import * +from .services import * +from .roots import * # Built-in features -from part import Part as addPart -from sketcher.sketch import addSketch -from construction import * -from features import * - -# Custom exceptions - -from errors import WrongNumberOfArguments -from errors import FeatureInputInvalid +from .build import * +from .sketcher import * +from .connection import * +from .construction import * +from .exchange import * +from .features import * +from .filters import * +from .collection import * +from .parameter import * +from .partset import * +from .primitives import * +from .gdml import * +from .tests import *