My algorithm to determine whether two lines are coincident (which have been proven previously they are parallel) verifies the following equation:
$$ \dfrac{x - x_o}{a} = \dfrac{y - y_o}{b} = \dfrac{z - z_o}{c} = \lambda $$
$x$, $y$ and $z$ are pointsB from lineB which I want to check in lineA
But if the director vector (not null) of the line contains some coordinate equal to zero $(a, b, c)$ my algorithm it will be invalid.
So how do I proceed in this case? I want to avoid using linear systems