0
0
Figmabi_tool~10 mins

Line and arrow tools in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

Coordinates representing start and end points for a line or arrow in a Figma design.

CellValue
A1Start Point
B1End Point
A2(100, 100)
B2(300, 300)
Formula Trace
DrawLine(StartPoint, EndPoint, ArrowHead = true)
Step 1: StartPoint = (100, 100)
Step 2: EndPoint = (300, 300)
Step 3: Calculate line vector = EndPoint - StartPoint
Step 4: Draw line from (100, 100) to (300, 300)
Step 5: Add arrowhead at EndPoint
Cell Reference Map
   A       B   
1 Start  End   
2 (100, 100) (300, 300) 

Arrows: A2 --> B2
The line is drawn from the coordinate in cell A2 to the coordinate in cell B2.
Result
  Canvas View
  +---------------------+
  |                     |
  |  * (100, 100)       |
  |     \               |
  |      \              |
  |       * (300, 300) ->|
  |                     |
  +---------------------+
A line with an arrowhead is drawn from point (100, 100) to point (300, 300) on the canvas.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the vector (200, 200) represent in the line drawing?
AThe distance and direction from start to end point
BThe coordinates of the arrowhead
CThe midpoint of the line
DThe thickness of the line
Key Result
DrawLine(StartPoint, EndPoint, ArrowHead) draws a line from StartPoint to EndPoint and optionally adds an arrowhead at the end.