How to convert coordinates in a left-handed graph to a right-handed graph

486 Views Asked by At

I have the following coordinates which describe points on a left-handed graph and I need to convert the graph to be right-handed instead:

$(0,0), (21,56), (38,0), (51, 35), (-5, 38)$

Is it as simple as multiplying the $x$ coordinates by $-1$? Or is there a translation or something more complex involved too?

Many thanks.