X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FKERNEL_PY%2Fkernel%2Fservices.py;h=37b38964f2a4a72fceba69a1ee79d6861de030ae;hb=63414a08d9492c25c206579c1953ec6f390679fd;hp=cddfa1f5f6803cbcb664434515531e4224c3f1bd;hpb=9749fc1db72bd80e278405114b05ffc69b5031da;p=modules%2Fkernel.git diff --git a/src/KERNEL_PY/kernel/services.py b/src/KERNEL_PY/kernel/services.py index cddfa1f5f..37b38964f 100644 --- a/src/KERNEL_PY/kernel/services.py +++ b/src/KERNEL_PY/kernel/services.py @@ -1,10 +1,10 @@ # -*- coding: iso-8859-1 -*- -# Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE # # 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. +# 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 @@ -222,10 +222,12 @@ def TEST_getComponentList(): def TEST_createObject(): """ - WARNING: for this test, we need GEOM (used to create an object + WARNING: for this test, we need GEOM (used to create an object) """ - import geompy - geompy.init_geom(salome.myStudy) + import GEOM + from salome.geom import geomBuilder + geompy = geomBuilder.New(salome.myStudy) + box = geompy.MakeBoxDXDYDZ(200, 200, 200) id = geompy.addToStudy( box, 'box' ) return id