From: eap Date: Tue, 28 May 2013 16:45:15 +0000 (+0000) Subject: 0022108: EDF 2547 SMESH: Duplicate elements only X-Git-Tag: V7_3_0a1~390 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=2de5e478f7dc337ba98196ff6665364c1e9d4c3e;hp=2de5e478f7dc337ba98196ff6665364c1e9d4c3e 0022108: EDF 2547 SMESH: Duplicate elements only 1) + void _pyGen::addFilterUser( Handle(_pyCommand)& theCmd, const Handle(_pyObject)& user ); 2) + * \brief Replaces "mesh.GetIDSource([id1,id2])" argument of a given command by + * a list "[id1,id2]" if the list is an accesible type of argument. + */ + void GetIDSourceToList( Handle( _pyCommand)& theCommand ) 3) + * \brief Replaces "SMESH.PointStruct(x,y,z)" and "SMESH.DirStruct( SMESH.PointStruct(x,y,z))" + * arguments of a given command by a list "[x,y,z]" if the list is accesible + * type of argument. + */ + void StructToList( Handle( _pyCommand)& theCommand ) ---