X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=idl%2FSMESH_Filter.idl;h=c8c4f4249a54bb8d07b444a6116a5461ed7651c1;hb=dfcc0eb72b126380c8da3d725f90c9ee43f59827;hp=b71cf922f75f115f445d0d40b11fc68d83bfacab;hpb=c5866a318c33c102961070f0a5076cbb76401d1f;p=modules%2Fsmesh.git diff --git a/idl/SMESH_Filter.idl b/idl/SMESH_Filter.idl index b71cf922f..c8c4f4249 100644 --- a/idl/SMESH_Filter.idl +++ b/idl/SMESH_Filter.idl @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2019 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -61,6 +61,8 @@ module SMESH FT_MultiConnection2D, FT_Length, FT_Length2D, + FT_Length3D, + FT_Deflection2D, FT_NodeConnectivityNumber, FT_BelongToMeshGroup, FT_BelongToGeom, @@ -117,7 +119,8 @@ module SMESH */ interface NumericalFunctor: Functor { - double GetValue( in long theElementId ); + double GetValue ( in long theElementId ); + boolean IsApplicable( in long theElementId ); Histogram GetHistogram ( in short nbIntervals, in boolean isLogarithmic ); Histogram GetLocalHistogram( in short nbIntervals, in boolean isLogarithmic, @@ -150,6 +153,8 @@ module SMESH typedef sequence Values; Values GetValues(); }; + interface Length3D : NumericalFunctor{}; + interface Deflection2D : NumericalFunctor{}; interface MultiConnection : NumericalFunctor{}; interface MultiConnection2D : NumericalFunctor { @@ -521,6 +526,7 @@ module SMESH void SetMesh( in SMESH_Mesh theMesh ); long_array GetElementsId( in SMESH_Mesh theMesh ); + long_array GetElementsIdFromParts( in ListOfIDSources theParts ); ElementType GetElementType(); Predicate GetPredicate(); @@ -585,6 +591,8 @@ module SMESH MaxElementLength3D CreateMaxElementLength3D(); Length CreateLength(); Length2D CreateLength2D(); + Length3D CreateLength3D(); + Deflection2D CreateDeflection2D(); MultiConnection CreateMultiConnection(); MultiConnection2D CreateMultiConnection2D(); BallDiameter CreateBallDiameter();