Salome HOME
Windows porting
[tools/medcoupling.git] / doc / user / images / ortho_field.py
index 7d27868d99ac503f27a1d2958585ab294e643a29..f49bc4f783d1624d2fc3afec7fd841ddac15efc7 100644 (file)
@@ -4,7 +4,11 @@
 ### This script is intended to be launched in a new SALOME study
 ###
 
-from MEDCoupling import *
+import sys
+if sys.platform == "win32":
+    from MEDCouplingCompat import *
+else:
+    from MEDCoupling import *
 
 coordsArr=DataArrayDouble(range(3))
 mesh1=MEDCouplingCMesh("mesh")