Salome HOME
Update copyrights
[modules/smesh.git] / src / Tools / padder / resources / testdata / buildparticules.py
index b8d40dc029947c23d454fe78d50e6d2ece022a68..e286a9dd4be48ab03638768ff432af04ceb58514 100755 (executable)
@@ -1,10 +1,10 @@
-#!/usr/bin/env python
-# Copyright (C) 2011-2013  EDF R&D
+#!/usr/bin/env python3
+# Copyright (C) 2011-2019  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.
+# 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
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
+import csv
 import salome
 salome.salome_init()
 import GEOM
 from salome.geom import geomBuilder
-geompy = geomBuilder.New(salome.myStudy)
+geompy = geomBuilder.New()
 
 filename="/home/gboulant/development/projets/salome/SPADDER/spadder/resources/padderexe/REF_spheres.dat.xyz"
-file=open(filename,'rb')
 
-import csv
-datalines = csv.reader(file, delimiter=' ')
+with open(filename,'rb') as f:
+    datalines = csv.reader(file, delimiter=' ')
 i=0
 for row in datalines:
     x=float(row[0])