Hi, I am writing a code to find the intersection of a plane and a line.
The plane is given as follows:
P: 7x+4y-7z-8=0
The line is:
d: t = (2x-1)/2 = y+1 = (3-z)/4
To start, I put the variables in terms of t. Could I get a nudge in the right direction?
CODE
x = t + 0.5;
y = t - 1;
z = -4*t + 3;