add doc and a couple of new methods to MakePipeShell
This commit is contained in:
@@ -17,57 +17,114 @@
|
||||
</Documentation>
|
||||
<Methode Name="setFrenetMode">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
setFrenetMode(True|False)
|
||||
Sets a Frenet or a CorrectedFrenet trihedron to perform the sweeping.
|
||||
True = Frenet
|
||||
False = CorrectedFrenet
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setTrihedronMode">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
setTrihedronMode(point,direction)
|
||||
Sets a fixed trihedron to perform the sweeping.
|
||||
All sections will be parallel.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setBiNormalMode">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
setBiNormalMode(direction)
|
||||
Sets a fixed BiNormal direction to perform the sweeping.
|
||||
Angular relations beetween the section(s) and the BiNormal direction will be constant.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setSpineSupport">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
setSpineSupport(shape)
|
||||
Sets support to the spine to define the BiNormal of the trihedron, like the normal to the surfaces.
|
||||
Warning: To be effective, Each edge of the spine must have an representation on one face of SpineSupport.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setAuxiliarySpine">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
setAuxiliarySpine(wire, CurvilinearEquivalence, TypeOfContact)
|
||||
Sets an auxiliary spine to define the Normal.
|
||||
|
||||
CurvilinearEquivalence = bool
|
||||
For each Point of the Spine P, an Point Q is evalued on AuxiliarySpine.
|
||||
If CurvilinearEquivalence=True Q split AuxiliarySpine with the same length ratio than P split Spine.
|
||||
|
||||
* OCC before 6.7
|
||||
TypeOfContact = bool
|
||||
True = keep Contact
|
||||
|
||||
* OCC >= 6.7
|
||||
TypeOfContact = long
|
||||
0: No contact
|
||||
1: Contact
|
||||
2: Contact On Border (The auxiliary spine becomes a boundary of the swept surface)
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="add">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
add(shape Profile, bool WithContact, bool WithCorrection)
|
||||
Adds the section Profile to this framework.
|
||||
First and last sections may be punctual, so the shape Profile may be both wire and vertex.
|
||||
If WithContact is true, the section is translated to be in contact with the spine.
|
||||
If WithCorrection is true, the section is rotated to be orthogonal to the spine tangent in the correspondent point.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="remove">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
remove(shape Profile)
|
||||
Removes the section Profile from this framework.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="isReady">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
isReady()
|
||||
Returns true if this tool object is ready to build the shape.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="getStatus">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
getStatus()
|
||||
Get a status, when Simulate or Build failed.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="makeSolid">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
makeSolid()
|
||||
Transforms the sweeping Shell in Solid. If a propfile is not closed returns False.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setTolerance">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
setTolerance( tol3d, boundTol, tolAngular)
|
||||
Tol3d = 3D tolerance
|
||||
BoundTol = boundary tolerance
|
||||
TolAngular = angular tolerance
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setTransitionMode">
|
||||
@@ -81,27 +138,66 @@
|
||||
</Methode>
|
||||
<Methode Name="firstShape">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
firstShape()
|
||||
Returns the Shape of the bottom of the sweep.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="lastShape">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
lastShape()
|
||||
Returns the Shape of the top of the sweep.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="build">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
build()
|
||||
Builds the resulting shape.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="shape">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
shape()
|
||||
Returns the resulting shape.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="generated">
|
||||
<Documentation>
|
||||
<UserDocu></UserDocu>
|
||||
<UserDocu>
|
||||
generated(shape S)
|
||||
Returns a list of new shapes generated from the shape S by the shell-generating algorithm.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setMaxDegree">
|
||||
<Documentation>
|
||||
<UserDocu>
|
||||
setMaxDegree(int degree)
|
||||
Define the maximum V degree of resulting surface.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setMaxSegments">
|
||||
<Documentation>
|
||||
<UserDocu>
|
||||
setMaxSegments(int num)
|
||||
Define the maximum number of spans in V-direction on resulting surface.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="setForceApproxC1">
|
||||
<Documentation>
|
||||
<UserDocu>
|
||||
setForceApproxC1(bool)
|
||||
Set the flag that indicates attempt to approximate a C1-continuous surface if a swept surface proved to be C0.
|
||||
</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
</PythonExport>
|
||||
|
||||
@@ -277,6 +277,49 @@ PyObject* BRepOffsetAPI_MakePipeShellPy::setTransitionMode(PyObject *args)
|
||||
Py_Return;
|
||||
}
|
||||
|
||||
PyObject* BRepOffsetAPI_MakePipeShellPy::setMaxDegree(PyObject *args)
|
||||
{
|
||||
#if OCC_VERSION_HEX >= 0x060800
|
||||
int degree;
|
||||
if (!PyArg_ParseTuple(args, "i",°ree))
|
||||
return 0;
|
||||
this->getBRepOffsetAPI_MakePipeShellPtr()->SetMaxDegree(degree);
|
||||
Py_Return;
|
||||
#else
|
||||
PyErr_SetString(PyExc_RuntimeError, "requires OCC >= 6.8");
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
PyObject* BRepOffsetAPI_MakePipeShellPy::setMaxSegments(PyObject *args)
|
||||
{
|
||||
#if OCC_VERSION_HEX >= 0x060800
|
||||
int nbseg;
|
||||
if (!PyArg_ParseTuple(args, "i",&nbseg))
|
||||
return 0;
|
||||
this->getBRepOffsetAPI_MakePipeShellPtr()->SetMaxSegments(nbseg);
|
||||
Py_Return;
|
||||
#else
|
||||
PyErr_SetString(PyExc_RuntimeError, "requires OCC >= 6.8");
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
PyObject* BRepOffsetAPI_MakePipeShellPy::setForceApproxC1(PyObject *args)
|
||||
{
|
||||
#if OCC_VERSION_HEX >= 0x060700
|
||||
PyObject *obj;
|
||||
if (!PyArg_ParseTuple(args, "O!",&PyBool_Type,&obj))
|
||||
return 0;
|
||||
this->getBRepOffsetAPI_MakePipeShellPtr()->SetForceApproxC1(PyObject_IsTrue(obj) ? Standard_True : Standard_False);
|
||||
Py_Return;
|
||||
#else
|
||||
PyErr_SetString(PyExc_RuntimeError, "requires OCC >= 6.7");
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
PyObject *BRepOffsetAPI_MakePipeShellPy::getCustomAttributes(const char* ) const
|
||||
{
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user