Write a 3 x 4 pre-image matrix for a kite with the points (2,4) (4,5) (6,4) and (4,1)

I think it's

[[2,4,6,4]
[4,5,4,1]
[1,1,1,1]]

Is that correct?