From 64f246d40e930e5fe7f4b7ed133657198bc35046 Mon Sep 17 00:00:00 2001 From: vsr Date: Thu, 5 Nov 2009 10:23:44 +0000 Subject: [PATCH] Issue 0020310: add usage note to the Fixed points hypothesis --- doc/salome/gui/SMESH/input/tui_defining_hypotheses.doc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/salome/gui/SMESH/input/tui_defining_hypotheses.doc b/doc/salome/gui/SMESH/input/tui_defining_hypotheses.doc index 20e81f3b8..0446180de 100644 --- a/doc/salome/gui/SMESH/input/tui_defining_hypotheses.doc +++ b/doc/salome/gui/SMESH/input/tui_defining_hypotheses.doc @@ -491,7 +491,13 @@ edge1 = geompy.GetSubShapeID(face, edges[0]) # Define Mesh on previously created face Mesh_1 = smesh.Mesh(face) -# Create Fixed Point 1D hypothesis and define parameters +# Create Fixed Point 1D hypothesis and define parameters. +# Note: values greater than 1.0 and less than 0.0 are not taken into account; +# duplicated values are removed. Also, if not specified explicitly, values 0.0 and 1.0 +# add added automatically. +# The number of segments should correspond to the number of points (NbSeg = NbPnt-1); +# extra values of segments splitting parameter are not taken into account, +# while missing values are considered to be equal to 1. Fixed_points_1D_1 = smesh.CreateHypothesis('FixedPoints1D') Fixed_points_1D_1.SetPoints( [ 1.1, 0.9, 0.5, 0.0, 0.5, -0.3 ] ) Fixed_points_1D_1.SetNbSegments( [ 3, 1, 2 ] )