In Inkscape, how do I set the coordinates of a control point by entering numbers?

In Inkscape is quite convenient to move objects by setting the upper left coordinates of the object in the form of numbers. Now, in my opinion, is there a similar operation applicable to bezier breakpoints? Although I am looking for an answer, I understand that it depends on the features of the software. Thanks in advance.

+7
inkscape
source share
1 answer

I studied the same question and found this almost 2 year old thread. I will leave my results here for those who are looking for answers:

There is no convenient way to manually enter the coordinates of a control point, but there are 2 alternatives:

easy:

When dragging around a control point, you can see that the control point is displayed in the status bar below:

Inkscape Pointer Coordinates

If you zoom in enough, you can place it with fairly high accuracy.


difficult:

  • Open the appropriate path in the XML editor:

XML Inkscape Editor

  1. Select attribute d . This attribute describes a path using nodes and control points in a single line of numbers.
  2. First, the coordinates of the nodes (X / Y) are indicated. After that you will find the letter C indicating the origin of the control point (X / Y).
  3. Edit the points manually and click the "Install" button as soon as you are done. Note. The units used here may differ from the units used to display your page. In this case, you will have to calculate the additional offset.
+3
source share

All Articles