Salome HOME
[MEDCalc] Fully functional scalar map (other pres deactivated)
[modules/med.git] / src / MEDCalc / cmp / MEDPresentationContour.cxx
1 // Copyright (C) 2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "MEDPresentationContour.hxx"
21
22 const std::string MEDPresentationContour::PROP_NB_CONTOUR = "nbContour";
23
24 void
25 MEDPresentationContour::internalGeneratePipeline()
26 {
27 //  PyGILState_STATE _gil_state = PyGILState_Ensure();
28 //
29 //  std::string cmd = std::string("import pvsimple as pvs;");
30 //  cmd += getRenderViewCommand(_params.viewMode); // define __view1
31 //
32 //  cmd += std::string("__obj1 = pvs.MEDReader(FileName='") + _fileName + std::string("');");
33 //  cmd += std::string("__isovolume1 = pvs.IsoVolume(Input=__obj1);");
34 //  cmd += std::string("__disp1 = pvs.Show(__isovolume1, __view1);");
35 //  cmd += std::string("pvs.ColorBy(__disp1, ('") + _fieldType + std::string("', '") + _fieldName + std::string("'));");
36 //  cmd += std::string("__disp1.SetScalarBarVisibility(__view1, True);");
37 //  cmd += std::string("__disp1.RescaleTransferFunctionToDataRangeOverTime();");
38 //  cmd += std::string("pvs.Render();");
39 //
40 //  cmd += getResetCameraCommand();
41 //
42 //  //std::cerr << "Python command:" << std::endl;
43 //  //std::cerr << cmd << std::endl;
44 //  PyRun_SimpleString(cmd.c_str());
45 //  // Retrieve Python object for internal storage:
46 //  PyObject* obj = getPythonObjectFromMain("__isovolume1");
47 //  PyObject* disp = getPythonObjectFromMain("__disp1");
48 //  pushInternal(obj, disp);
49 //
50 //  PyGILState_Release(_gil_state);
51 }
52
53 void
54 MEDPresentationContour::updatePipeline(const MEDCALC::ContourParameters& params)
55 {
56   // :TODO:
57 }