Salome HOME
Install tests.set
[modules/smesh.git] / src / Tools / padder / resources / testdata / buildparticules.py
1 #!/usr/bin/env python
2 # Copyright (C) 2011-2016  EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 import salome
22 salome.salome_init()
23 import GEOM
24 from salome.geom import geomBuilder
25 geompy = geomBuilder.New()
26
27 filename="/home/gboulant/development/projets/salome/SPADDER/spadder/resources/padderexe/REF_spheres.dat.xyz"
28 file=open(filename,'rb')
29
30 import csv
31 datalines = csv.reader(file, delimiter=' ')
32 i=0
33 for row in datalines:
34     x=float(row[0])
35     y=float(row[1])
36     z=float(row[2])
37     rayon=float(row[3])/2.
38
39     centre = geompy.MakeVertex(x, y, z)
40     particule = geompy.MakeSpherePntR(centre, rayon)
41     geompy.addToStudy( particule, 'p'+str(i) )
42     i+=1