I found this post...
Find coordinates of a 2D plane within a 3D plane
Edit: I rewrote the following for clarity...
I want to translate real-world X, Y, Z coordinates in 3d modeling software to an arbitrary 2d plane that lies within the 3d system of the software. All points in this problem will lie on the arbitrary 2d plane but are expressed as 3d points within the 3d system. I want the points expressed as 2d points within the 2d Cartesian plane, which has its own origin.
This is my best guess implementation, but I do not know if it works in all situations:
$x_o, y_o, z_o$ = given origin point of 2d plane expressed as a point in the 3d system.
$(X_u, Y_u, Z_u)$ = The transform for the 2d plane Y-direction/upwards vector relative to the 3d system; e.g. (0,0,1)
$(X_r, Y_r, Z_r)$ = The transform for the 2d plane X-direction/rightwards vector relative to the 3d system; e.g. (1,0,0)
$x_1, y_1, z_1$ = given coordinates for a point in the 3d system that lies on the 2d plane
$x_2, y_2$ = x, y of the above point as expressed as a point on the 2d Cartesian plane.
Equations:
$$x_2 = (X_r(x_1 - x_o) + Y_r(y_1 - y_o) + Z_r(z_1 - z_o))$$
$$y_2 = (X_u(x_1 - x_o) + Y_u(y_1 - y_o) + Z_u(z_1 - z_o))$$
Not remembering my high school math on the matter, I literally figured these equations out from scratch on a sheet of graph paper, so I have no idea if they are valid.
Any help is appreciated.