0
0
Figmabi_tool~10 mins

Vector editing mode in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

Coordinates of three points defining a vector shape in Figma's vector editing mode.

CellValue
A1Point 1 X
B1Point 1 Y
A2100
B2150
A3Point 2 X
B3Point 2 Y
A4200
B4250
A5Point 3 X
B5Point 3 Y
A6300
B6350
Formula Trace
Distance = SQRT((X2 - X1)^2 + (Y2 - Y1)^2)
Step 1: X2 - X1
Step 2: 200 - 100
Step 3: Y2 - Y1
Step 4: 250 - 150
Step 5: (X2 - X1)^2
Step 6: 100^2
Step 7: (Y2 - Y1)^2
Step 8: 100^2
Step 9: (X2 - X1)^2 + (Y2 - Y1)^2
Step 10: 10000 + 10000
Step 11: SQRT(20000)
Cell Reference Map
     A       B
1  Point1X  Point1Y
2   100      150
3  Point2X  Point2Y
4   200      250

Arrows: A2 -> A4, B2 -> B4 (coordinates used for distance calculation)
Coordinates from Point 1 (A2,B2) and Point 2 (A4,B4) are referenced to calculate distance.
Result
     A       B       C
1  Point1X  Point1Y  Distance
2   100      150     
3  Point2X  Point2Y  
4   200      250     141.42
Distance between Point 1 and Point 2 is calculated and shown in cell C4.
Sheet Trace Quiz - 3 Questions
Test your understanding
What is the difference between X coordinates of Point 2 and Point 1?
A100
B50
C250
D200
Key Result
Distance between two points is calculated using the Pythagorean theorem: sqrt((X2 - X1)^2 + (Y2 - Y1)^2).