PyObject* itemGetApplyPoint(PyObject* poSelf, PyObject* poArgs)
{
BYTE bApplyType;
if (!PyTuple_GetByte(poArgs, 0, &bApplyType))
return Py_BuildException();
const BYTE bApplyPointType{ __GetApplyPointType(bApplyType) };
if (bApplyPointType == POINT_MAX_NUM)...