In footprint and pcb editor : how to draw a trace by coordinate, x/y length

Hi,

I want to know how to do this :

  • start a trace at X/Y defined position
  • continue tracing by saying X/Y length from last point and/or from original point

I know I can draw it and change it after but what I want is to draw it directly at good position to save time.

Thx.
D.

If your traces are aligned to a grid, then it can be done as follows;

  1. Position cursor at start point
  2. Press space to set relative origin
  3. Without moving cursor, left click to start trace
  4. Draw trace making note of relative position
  5. Click to end
1 Like

yeah, I know, but it is difficult/long to be precise.
So I want a method where I use keyboard to enter the coordinates.
Is there a such method ??

D.

Not really.

Of course, all the above GUI actions moves can be replaced with key presses e.g. enter instead of click, arrow keys instead of mouse moves.

I think you might be asking “is there a command line where I can type ‘LINE (10,100,5,5)’ like in Eagle?” - the answer to that is no. I guess you could write some Python script to do it.

2 Likes

The closest approximation to this capability is:

  • Invoke the “OpenGL” canvas { F11 key }
  • Hover over an existing trace (or line, circle, arc, etc, on the layers that permit them)
    OR
  • Lay down a very minimal trace
      • Select the desired layer
      • Activate the “Trace” (or “Line”, “Circle”, etc) tool
      • Left-click to start the object
      • Move the mouse a small distance
      • End the trace (“End” key, or Left-click > “Esc” key)
  • Edit the object’s parameters (“E” key, or Right-click > “Properties” menu selection)

  • Enter the desired {X, Y} coordinates. (Remember that the Y-axis direction is opposite to what most of us have been conditioned to.)

Those mouse and keyboard actions sound like a lot of motion to perform a simple task. I suppose they ARE a lot - but after you become accustomed to working with one hand on the keyboard and the other on the mouse, they can be done quite rapidly. If you are attentive with your mouse clicks, you can place one end of the trace where you want it to be , and only worry about entering one coordinate pair.

Dale

Using keyboard with arrow and enter could be a solution.
I will try it in my next component creation.

thanks for answer.

D.