This is very similar to this question:
Coordinates of parallel triangle with a distance of 'd' between the parallel edges?
That seems to provide the answer in 2D, but I am unsure how to apply this to 3D.
To recap the original question; I am looking to scale a triangle such that the new triangle has the same distance to the original for each edge; I also need to do so in 3D.
A triangle in 3D is still a triangle, with the area $S$ and semiperimeter $\rho$, just all the points has one extra coordinate, so the solution in the cited answer is also valid. The point of the incenter is found as
\begin{align} I&=\tfrac{a}{2\rho}A+\tfrac{b}{2\rho}B+\tfrac{c}{2\rho}C, \end{align} the inradius $r=\frac{S}{\rho}$, and expression for the scaled points is the same:
\begin{align} P'= I + \frac{r+d}{r}(P-I) \end{align} for $P=A,B,C$, $P'=A',B',C'$.
* Edit * Example:
\begin{align} a&=10.6770782520313 \\ b&=13.6014705087354 \\ c&=7.68114574786861 \\ \rho&=15.9798472543177 \\ S&=40.8962100933571 \\ r&=2.55923660861696 \\ Ic&=(0.0750533703072529,5.86313622256124,0.535772095008993) \\ d&=-1 \end{align}