Salome HOME
sources v1.2
[modules/smesh.git] / src / SMESH / SMESH_NumberOfSegments.cxx
index 2a2ae6b3e2884097b2e496e877d0ab44e46dd259..d1e4f9ebfbc7954058c26e533a4d79caa65a44c4 100644 (file)
@@ -1,14 +1,33 @@
+//  SMESH SMESH : implementaion of SMESH idl descriptions
+//
+//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
+// 
+//  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. 
+// 
+//  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+//
+//
+//
+//  File   : SMESH_NumberOfSegments.cxx
+//  Author : Paul RASCLE, EDF
+//  Module : SMESH
+//  $Header$
+
 using namespace std;
-//=============================================================================
-// File      : SMESH_NumberOfSegments.cxx
-// Created   : sam mai 18 08:11:15 CEST 2002
-// Author    : Paul RASCLE, EDF
-// Project   : SALOME
-// Copyright : EDF 2002
-// $Header$
-//=============================================================================
 using namespace std;
-
 #include "SMESH_NumberOfSegments.hxx"
 
 //=============================================================================
@@ -21,6 +40,7 @@ SMESH_NumberOfSegments::SMESH_NumberOfSegments(int hypId, int studyId, SMESH_Gen
  : SMESH_Hypothesis(hypId, studyId, gen)
 {
   _numberOfSegments = 1;
+  _scaleFactor = 1.0;
   _name = "NumberOfSegments";
 }
 
@@ -69,6 +89,33 @@ int SMESH_NumberOfSegments::GetNumberOfSegments()
  */
 //=============================================================================
 
+void SMESH_NumberOfSegments::SetScaleFactor(double scaleFactor)
+  throw (SALOME_Exception)
+{
+  if (scaleFactor < 0) 
+    throw SALOME_Exception(LOCALIZED("scale factor must be positive"));
+  _scaleFactor = scaleFactor;
+
+  NotifySubMeshesHypothesisModification();
+}
+
+//=============================================================================
+/*!
+ *  
+ */
+//=============================================================================
+
+double SMESH_NumberOfSegments::GetScaleFactor()
+{
+  return _scaleFactor;
+}
+
+//=============================================================================
+/*!
+ *  
+ */
+//=============================================================================
+
 ostream & SMESH_NumberOfSegments::SaveTo(ostream & save)
 {
   return save << this;