Ok...put the points for y won't be numbers, but variables.
if x = 0, y = -(c/b) giving point (0, -c/b)
if x = 1, y = (-c-a)/b giving point (1, -c/b - a/b)
Now I have a vector: [1, -a/b]
using y = 0 and y = 1 for the second equation will give me [a/b, 1]
These are orthogonal! Thank you!
Now...