@@ -549,29 +549,6 @@ Py_Outline_embolden(Py_Outline* self, PyObject* args, PyObject* kwds)
549
549
};
550
550
551
551
552
- static PyObject *
553
- Py_Outline_embolden_xy (Py_Outline * self , PyObject * args , PyObject * kwds ) {
554
- double xstrength ;
555
- double ystrength ;
556
-
557
- const char * keywords [] = {"xstrength" , "ystrength" , NULL };
558
-
559
- if (!PyArg_ParseTupleAndKeywords (
560
- args , kwds , "d:embolden" , (char * * )keywords ,
561
- & xstrength , & ystrength )) {
562
- return NULL ;
563
- }
564
-
565
- if (ftpy_exc (
566
- FT_Outline_EmboldenXY (& self -> x ,
567
- TO_F26DOT6 (xstrength ), TO_F26DOT6 (ystrength )))) {
568
- return NULL ;
569
- }
570
-
571
- Py_RETURN_NONE ;
572
- };
573
-
574
-
575
552
static PyObject *
576
553
Py_Outline_get_bbox (Py_Outline * self , PyObject * args , PyObject * kwds )
577
554
{
@@ -730,7 +707,6 @@ static PyMethodDef Py_Outline_methods[] = {
730
707
OUTLINE_METHOD_NOARGS (check ),
731
708
OUTLINE_METHOD (decompose ),
732
709
OUTLINE_METHOD (embolden ),
733
- OUTLINE_METHOD (embolden_xy ),
734
710
OUTLINE_METHOD_NOARGS (get_bbox ),
735
711
OUTLINE_METHOD_NOARGS (get_cbox ),
736
712
OUTLINE_METHOD_NOARGS (get_orientation ),
0 commit comments