Sketcher - Add new Split Edge action

This commit is contained in:
Tomas Pavlicek
2021-02-09 23:17:40 +01:00
committed by abdullahtahiriyo
parent 9209d35390
commit a7d83b5e15
11 changed files with 1276 additions and 14 deletions

View File

@@ -570,7 +570,7 @@ PyObject* SketchObjectPy::delConstraintOnPoint(PyObject *args)
if (!PyArg_ParseTuple(args, "i|i", &Index, &pos))
return 0;
if (pos>=0 && pos<3) { // Sketcher::none Sketcher::mid
if (pos>=0 && pos<=3) { // Sketcher::none Sketcher::mid
if (this->getSketchObjectPtr()->delConstraintOnPoint(Index,(Sketcher::PointPos)pos)) {
std::stringstream str;
str << "Not able to delete a constraint on point with the given index: " << Index
@@ -1120,6 +1120,25 @@ PyObject* SketchObjectPy::extend(PyObject *args)
return 0;
}
PyObject* SketchObjectPy::split(PyObject *args)
{
PyObject *pcObj;
int GeoId;
if (!PyArg_ParseTuple(args, "iO!", &GeoId, &(Base::VectorPy::Type), &pcObj))
return 0;
Base::Vector3d v1 = static_cast<Base::VectorPy*>(pcObj)->value();
if (this->getSketchObjectPtr()->split(GeoId,v1)) {
std::stringstream str;
str << "Not able to split curve with the given index: " << GeoId;
PyErr_SetString(PyExc_ValueError, str.str().c_str());
return 0;
}
Py_Return;
}
PyObject* SketchObjectPy::addSymmetric(PyObject *args)
{
PyObject *pcObj;