Salome HOME
bos #20430 [CEA 20428] FIELDS : improvement of simplified visualisations
[modules/med.git] / src / MEDCalc / cmp / MEDPresentationStreamLines.hxx
diff --git a/src/MEDCalc/cmp/MEDPresentationStreamLines.hxx b/src/MEDCalc/cmp/MEDPresentationStreamLines.hxx
new file mode 100644 (file)
index 0000000..775626d
--- /dev/null
@@ -0,0 +1,58 @@
+// Copyright (C) 2016-2021  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#ifndef SRC_MEDCALC_CMP_MEDPRESENTATION_STREAM_LINES_HXX_
+#define SRC_MEDCALC_CMP_MEDPRESENTATION_STREAM_LINES_HXX_
+
+#include "MEDCALC.hxx"
+#include "MEDPresentation.hxx"
+#include <string>
+
+class MEDCALC_EXPORT MEDPresentationStreamLines : public MEDPresentation
+{
+public:
+  static const std::string TYPE_NAME;
+  static const std::string PROP_INTEGR_DIR_TYPE;
+
+  MEDPresentationStreamLines(const MEDCALC::StreamLinesParameters& params, const MEDCALC::ViewModeType viewMode);
+  virtual ~MEDPresentationStreamLines() {}
+
+  void updatePipeline(const MEDCALC::StreamLinesParameters& params);
+
+  void getParameters(MEDCALC::StreamLinesParameters & params) const { params = _params; } ;
+  void setParameters(const MEDCALC::StreamLinesParameters & params) { _params = params; } ;
+
+  void initFieldMeshInfos() override;
+
+protected:
+  void updateIntegrDir(const MEDCALC::IntegrationDirType mode);
+  virtual void internalGeneratePipeline();
+  std::string additionalThresholdInitializationActions() override;
+  std::string getFieldName() const override;
+  void scalarBarTitle() override;
+
+
+private:
+  std::string getIntegrDirType() const;
+  std::string _objStreamCalc;
+  void addThirdZeroComponent();
+  MEDCALC::StreamLinesParameters _params;
+};
+
+#endif
\ No newline at end of file