I'm sure the post title will be somewhat confusing so I'll try to explain my situation. I'm currently trying to draw, in CAD software, a cross-section through roof structure and I have encountered a geometrical issue which I can't quite work out how to solve. The roof finish is Oak or Cedar Shakes i.e. hand-cut timber rectangles with differing thickness at either end. The size I am using for a single Shake is shown below:
My problem is relatively simple; as can been seen in the below image, each shake is 125mm apart from its neighbour, and both shakes are then rotated CCW by an unknown angle θ about the pivot points indicated by the red dots. Eventually, when θ is large enough, the opposing point on the bottom surface of Shake A (indicated by a green dot), will intersect with the sloping top surface of Shake B. The reason I am here is to seek advice how to calculate that intersection point?
n.b. I can manually determine an approximate intersection by process of trial and error applying rotational increments of increasing accuracy, but I would hope that there is some geometrical or computational method to calculate the exact intersection point.


The shake increases from a thickness of $2$ to a thickness of $10$ at $325$, so it has a slope of $8:325$, or an angle $\varphi_T$, $$\varphi_T = \arctan\left(\frac{8}{325}\right) \approx 1.4101°$$
The distance between shakes is $125$, and since the initial thickness of the shake, this has a slope of $2:125$, or an angle $\varphi_B$, $$\varphi_B = \arctan\left(\frac{2}{125}\right) \approx 0.9166°$$
In other words, because $\varphi_T \gt \varphi_B$, it is the far bottom corner of the upper shake that intersects with the next shake, exactly as OP showed. (Perhaps it was obvious to you, because $\frac{8}{325} \gt \frac{2}{125}$, but I needed to check first.)
If we put the pivot of the top shake at origin, the far bottom corner is then at $x_1(\theta)$, $y_1(\theta)$, $$\left\lbrace ~ \begin{aligned} x_1(\theta) &= 325 \cos \theta \\ y_1(\theta) &= 325 \sin \theta \\ \end{aligned} \right . \tag{1}\label{1}$$ If we assume the shakes are at the exact same angle, on the lower shake the point at distance $L$ from the upper initial corner is at $x_2(\theta, L)$, $y_2(\theta, L)$, $$\left\lbrace ~ \begin{aligned} x_2(\theta) &= 125 - 2 \sin \theta + L \cos \left(\theta + \varphi_T\right) \\ y_2(\theta) &= 2 \cos\theta + L \sin \left(\theta + \varphi_T\right) \\ \end{aligned} \right . \tag{2}\label{2}$$ Note that with respect to OP's images, right is $x = 1, y = 0$; up is $x = 0, y = 1$; along angle $\theta$ is $x = \cos \theta$, $y = \sin\theta$, and perpendicular to (90° clockwise from) angle $\theta$ is $x = -\sin\theta$, $y = \cos\theta$.
At the intersection, we have a system of two equations in two unknowns ($\theta$ and $L$), $$\left\lbrace ~ \begin{aligned} x_1(\theta) &= x_2(\theta, L) \\ y_1(\theta) &= y_2(\theta, L) \\ \end{aligned} \right .$$ i.e. $$\left\lbrace ~ \begin{aligned} 325 \cos \theta &= 125 - 2 \sin \theta + L \cos \left(\theta + \arctan\left(\frac{8}{325}\right)\right) \\ 325 \sin \theta &= 2 \cos\theta + L \sin \left(\theta + \arctan\left(\frac{8}{325}\right)\right) \\ \end{aligned} \right . \tag{3}\label{3}$$ which we need to solve for $0.9166° \le \theta \le 60°$ (any maximum less than $90° - \varphi_T$ works, otherwise $L$ would be infinite or negative), and $0 \le L \le 325$.
I do not know how to solve this algebraically, but numerically it is easy. Whenever we have a candidate angle $\theta$, we can solve $L$ from the upper equation, i.e. $$L = \frac{325 \cos \theta - 125 + 2 \sin \theta}{\cos \left(\theta + \arctan\left(\frac{8}{325}\right)\right)}$$ and then compare the left and right sides of the lower equation. If the left side is greater than the right side, then the angle is too large; if the left side is less than the right side, the angle is too small. The bisection method (which programmers call 'a binary search') will quickly converge to the solution.
Because I'm faster at typing code than using Octave etc., I wrote this simple Python program,
which told me the solution is $\theta = 3.177100°$, or a slope of $\tan(3.177100°) \approx 0.055507759$, or about $1:18.0155$.
If we consider traditional methods, then approximating the angle as a slope of $1:18$ ($\approx 3.17983°$) has less than $0.1\%$ of error.