2 Copyright (C) 2006-2011 CEA/DEN, EDF R&D
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.
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.
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
18 See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 <!-- a for each loop with 3 branches with an inline python node -->
24 <sequence name="dblevec" content="double"/>
27 <inline name="node0" >
29 <code>p1=[i*0.5 for i in range(10)]</code>
31 <outport name="p1" type="dblevec"/>
34 <foreach name="b1" nbranch="3" type="double" >
35 <inline name="node2" >
38 <code>def f(p1):</code>
39 <code> global a</code>
40 <code> p1= p1+10.</code>
44 <code> return p1</code>
46 <inport name="p1" type="double"/>
47 <outport name="p1" type="double"/>
50 <inline name="node1" >
54 <inport name="p1" type="dblevec"/>
58 <control> <fromnode>node0</fromnode> <tonode>b1</tonode> </control>
59 <control> <fromnode>b1</fromnode> <tonode>node1</tonode> </control>
63 <fromnode>node0</fromnode><fromport>p1</fromport>
64 <tonode>b1</tonode> <toport>SmplsCollection</toport>
67 <fromnode>b1</fromnode><fromport>SmplPrt</fromport>
68 <tonode>b1.node2</tonode> <toport>p1</toport>
71 <fromnode>b1.node2</fromnode><fromport>p1</fromport>
72 <tonode>node1</tonode> <toport>p1</toport>