Regression of SALOME_TESTS/Grids/geom/imps_07/H9

Provide creation information for MakeCylinderA()
This commit is contained in:
eap 2014-11-12 20:06:47 +03:00
parent 31d723907d
commit e957479789
2 changed files with 17 additions and 5 deletions

View File

@ -169,12 +169,24 @@ GetCreationInformation(std::string& theOperationName,
AddParam( theParams, "Radius", aCI.GetR() );
AddParam( theParams, "Height", aCI.GetH() );
break;
case CONE_PNT_VEC_R1_R2_H:
case CYLINDER_R_H_A:
AddParam( theParams, "Radius", aCI.GetR() );
AddParam( theParams, "Height", aCI.GetH() );
AddParam( theParams, "Angle", aCI.GetA() );
break;
case CYLINDER_PNT_VEC_R_H:
AddParam( theParams, "Base Point", aCI.GetPoint() );
AddParam( theParams, "Vector", aCI.GetVector() );
AddParam( theParams, "Radius", aCI.GetR() );
AddParam( theParams, "Height", aCI.GetH() );
break;
case CYLINDER_PNT_VEC_R_H_A:
AddParam( theParams, "Base Point", aCI.GetPoint() );
AddParam( theParams, "Vector", aCI.GetVector() );
AddParam( theParams, "Radius", aCI.GetR() );
AddParam( theParams, "Height", aCI.GetH() );
AddParam( theParams, "Angle", aCI.GetA() );
break;
default:
return false;
}

View File

@ -3022,7 +3022,7 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
@ManageTransactions("PrimOp")
def MakeCylinderA(self, thePnt, theAxis, theR, theH, theA, theName=None):
"""
Create a a portion of cylinder with given base point, axis, radius, height and angle.
Create a portion of cylinder with given base point, axis, radius, height and angle.
Parameters:
thePnt Central point of cylinder base.