]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdDiv.xml
#3507 BackFace in PolyDataToActor Box
[bbtk.git] / packages / std / src / bbstdDiv.xml
index 7a6ccfa42beb86de9ab5d0d7ec6bf48b91a99647..ab02f2ce53044ae13bb2dbb48d868c9cdf497e6a 100644 (file)
@@ -3,22 +3,22 @@
 <blackbox name="Div">
 
   <author>laurent.guigues@creatis.insa-lyon.fr</author>
-  <description>Divides its inputs</description>
+  <description>Divides its inputs (C++,Python)</description>
   <category>math</category>
 
-  <input name="In1" type="double" description="Numerator"/>
-  <input name="In2" type="double" description="Denominator"/>
+  <input name="In1"  type="double" description="Numerator"/>
+  <input name="In2"  type="double" description="Denominator"/>
   <output name="Out" type="double" description="Result"/>
 
   <process><PRE>
     bbSetOutputOut( bbGetInputIn1() / bbGetInputIn2() );
   </PRE></process>
   
-  <constructor><PRE>
+  <defaultValues><PRE>
     bbSetInputIn1(0);
     bbSetInputIn2(1);
     bbSetOutputOut(0);
-  </PRE></constructor>    
+  </PRE></defaultValues>    
 
 </blackbox>