If I have a line in 3d like $(x,y,z)+t(a,b,c)$, and 3 constraints
$x_{min} ≤ x_0 ≤ x_{max}$
$y_{min} ≤ y_0 ≤ y_{max}$
$z_{min} ≤ z_0 ≤ z_{max}$
Given $x_{min}, x_{max}, y_{min}, y_{max}, z_{min}, z_{max}, (x,y,z), (a,b,c)$, how can I check if there exists a point $(x_0,y_0,z_0)$ in the line that also satisfies the 3 constraints above?
Thanks