WYO_123,
Mach3 stores the output of a digitizing file in ASCII text format. Each line of text represents a sample point. Here is an example of a tiny part of a file from a scan using the digitizing wizard that is clumped in with the other wizards:
0.00000,0.00000,-0.01859
0.00100,0.00000,-0.01859
0.00200,0.00000,-0.01844
0.00300,0.00000,-0.01847
0.00400,0.00000,-0.01844
These five lines define five points with x, y and z values delimited with commas, so the first line says x=0, y=0 and z=-0.01859.
As the program samples points, it increments the x location by the x step value you specified, taking a z sample every step, until it reaches the maximum x dimension that you specify in the set up. Then it increments y by one step unit and then, starting at the maximum value of x, it decrements the x value back down to x=0 taking a z sample at every step. Then it increments y and so on.
You need to turn this "point cloud" output into G-code and I haven't even tried yet and I don't know what program would be the best for doing that. If you have a program that accepts comma delimited x,y,z point cloud files and can convert them to dxf files, I think that might be a good way to go. I'm sure there are people on this forum that have some experience with turning point clouds into G-code. I haven't got that far yet myself. I do know that the Global Mapper program will accept point cloud files and turn them into dxf or JPEG image files and these can be converted to G-code with the right program, perhaps even with LCAM.
This is new territory for me also! Sorry I don't know more about it.