X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FConstructionPlugin%2FTest%2FTestPointName.py;h=0a5093b5a3a80c6a8326993b34b43d3877084adb;hb=b392d5b4fb3f49a8258ec024cdf1729f80f5629a;hp=a46f46ee7c852c6eb24f667392835fd892b7239e;hpb=5b6031b015602aa07f5a6fc668c13ac3faf7a8a9;p=modules%2Fshaper.git diff --git a/src/ConstructionPlugin/Test/TestPointName.py b/src/ConstructionPlugin/Test/TestPointName.py index a46f46ee7..0a5093b5a 100644 --- a/src/ConstructionPlugin/Test/TestPointName.py +++ b/src/ConstructionPlugin/Test/TestPointName.py @@ -1,4 +1,24 @@ +# Copyright (C) 2014-2021 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 +# + from ModelAPI import * +from GeomDataAPI import * aSession = ModelAPI_Session.get() aDoc = aSession.moduleDocument() @@ -7,10 +27,8 @@ aSession.startOperation() aFeature = aDoc.addFeature("Point") aFeatureData = aFeature.data() assert(aFeatureData is not None) -# aFeatureData.string("creation_method").setValue("by_xyz") -aFeatureData.real("x").setValue(0.) -aFeatureData.real("y").setValue(0.) -aFeatureData.real("z").setValue(0.) +geomDataAPI_Point(aFeatureData.attribute("point3d")).setValue(0., 0., 0.) +aFeatureData.string("creation_method").setValue("by_xyz") aFeatureName = aFeature.name() aFeature.execute() aSession.finishOperation()