QCoreApplication::translate("PythonDocMeshObjectSelection","Traces Edge Paths. Takes all selected edges and tries to continue them, as long as the angle between edges is not above threshold").toLatin1().data(),
py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","ID of the object").toLatin1().data()),
@@ -344,24 +373,8 @@ PYBIND11_EMBEDDED_MODULE(MeshObjectSelection, m) {
//
//
// emit setSlotDescription("selectEdges(int,IdList)", tr("Select the specified edges"),
// QString("objectId,edgeList").split(","), QString("Id of an object,List of edges").split(","));
// emit setSlotDescription("unselectEdges(int,IdList)", tr("Unselect the specified edges"),
// QString("objectId,edgeList").split(","), QString("Id of an object,List of edges").split(","));
// emit setSlotDescription("selectAllEdges(int)", tr("Select all edges of an object"),
// QStringList("objectId"), QStringList("Id of an object"));
// emit setSlotDescription("invertEdgeSelection(int)", tr("Invert edge selection of an object"),
// QStringList("objectId"), QStringList("Id of an object"));
// emit setSlotDescription("clearEdgeSelection(int)", tr("Clear edge selection of an object"),
// QStringList("objectId"), QStringList("Id of an object"));
// emit setSlotDescription("selectBoundaryEdges(int)", tr("Select all boundary edges of an object"),
// QStringList("objectId"), QStringList("Id of an object"));
//
// emit setSlotDescription("colorizeEdgeSelection(int,int,int,int)", tr("Colorize the selected edges"),
// QString("objectId,r,g,b").split(","), QString("Id of an object,Red,Green,Blue").split(","));
// emit setSlotDescription("createMeshFromEdgeSelection(int)", tr("Take edge selection and create a new mesh from it"),
// QString("objectId").split(","), QString("Id of an object where the selection should be used to create a new mesh").split(","));
//
// emit setSlotDescription("selectHalfedges(int,IdList)", tr("Select the specified halfedges"),
// QString("objectId,halfedgeList").split(","), QString("Id of an object,List of halfedges").split(","));
// emit setSlotDescription("unselectHalfedges(int,IdList)", tr("Unselect the specified halfedges"),
...
...
@@ -412,64 +425,14 @@ PYBIND11_EMBEDDED_MODULE(MeshObjectSelection, m) {
// emit setSlotDescription("conversion(QString,QString,bool)", tr("Convert selection on all target Objects.")+conversionStrings,
// QString("from,to,deselect").split(","), QString("string of selection which will be converted,resulting selection region or feature,deselect selection after conversion").split(","));
// QCoreApplication::translate("PythonDocMeshObjectSelection","Selects all vertices that have valence 3 and the normals of their neighboring faces have an angle less then the given angle").toLatin1().data(),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","ID of the object").toLatin1().data()),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","Maximal angle between the adjacent faces").toLatin1().data()) );
// QCoreApplication::translate("PythonDocMeshObjectSelection","Selects all edges of an object which are shorter than the given length").toLatin1().data(),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","ID of the object").toLatin1().data()),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","All edges shorter than this length will be selected").toLatin1().data()) );
// QCoreApplication::translate("PythonDocMeshObjectSelection","Selects all edges of an object which are longer than the given length").toLatin1().data(),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","ID of the object").toLatin1().data()),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","All edges longer than this length will be selected").toLatin1().data()) );
// QCoreApplication::translate("PythonDocMeshObjectSelection","Select or remove skinny triangles (determined by a minimum angle threshold).").toLatin1().data(),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","ID of the object").toLatin1().data()),
// QCoreApplication::translate("PythonDocMeshObjectSelection","Selects all faces that have a larger aspect ratio than the given one.").toLatin1().data(),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","ID of the object").toLatin1().data()),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","The minimal aspect ratio to select").toLatin1().data()) );
// QCoreApplication::translate("PythonDocMeshObjectSelection","Flips the normals of all faces by changing the vertex order in each face").toLatin1().data(),
// py::arg(QCoreApplication::translate("PythonDocMeshObjectSelection","ID of the object").toLatin1().data()) );