mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 18:18:35 +05:00
0020327: EDF 1018 GEOM : Missing MakeTangentPlaneOnFace in geompy
This commit is contained in:
parent
615e23820b
commit
fb601e2825
@ -404,13 +404,14 @@ class geompyDC(GEOM._objref_GEOM_Gen):
|
|||||||
RaiseIfFailed("MakeTangentOnCurve", self.BasicOp)
|
RaiseIfFailed("MakeTangentOnCurve", self.BasicOp)
|
||||||
return anObj
|
return anObj
|
||||||
|
|
||||||
## Create a tangent plane to specified face in the point with specified parameters.
|
## Create a tangent plane, corresponding to the given parameter on the given face.
|
||||||
# @param theFace - face for which tangent plane shuold be built.
|
# @param theFace The face for which tangent plane should be built.
|
||||||
# @param theParameterU - value of parameter by U
|
# @param theParameterV vertical value of the center point (0.0 - 1.0).
|
||||||
# @param theParameterV - value of parameter Vthe
|
# @param theParameterU horisontal value of the center point (0.0 - 1.0).
|
||||||
# @param theTrimSize - defines sizes of created face
|
# @param theTrimSize the size of plane.
|
||||||
# Values of parameters should be between 0. and 1.0
|
# @return New GEOM_Object, containing the created tangent.
|
||||||
# return New GEOM_Object, containing the face built on tangent plane.
|
#
|
||||||
|
# @ref swig_MakeTangentPlaneOnFace "Example"
|
||||||
def MakeTangentPlaneOnFace(self, theFace, theParameterU, theParameterV, theTrimSize):
|
def MakeTangentPlaneOnFace(self, theFace, theParameterU, theParameterV, theTrimSize):
|
||||||
anObj = self.BasicOp.MakeTangentPlaneOnFace(theFace, theParameterU, theParameterV, theTrimSize)
|
anObj = self.BasicOp.MakeTangentPlaneOnFace(theFace, theParameterU, theParameterV, theTrimSize)
|
||||||
RaiseIfFailed("MakeTangentPlaneOnFace", self.BasicOp)
|
RaiseIfFailed("MakeTangentPlaneOnFace", self.BasicOp)
|
||||||
|
Loading…
Reference in New Issue
Block a user