584,808 active members*
5,362 visitors online*
Register for free
Login
IndustryArena Forum > OpenSource CNC Design Center > Coding > Stereolithography file to GCode
Page 1 of 2 12
Results 1 to 20 of 34
  1. #1
    Join Date
    Jun 2005
    Posts
    180

    Stereolithography file to GCode

    I have been working on decoding .stl files to eventually obtain Z heights for machining. So far, I have translated the binary .stl to extract the 3 coordinates for each facet's vertex. Now I am trying to decide how best to slice through a section to find the machining coordinates.

    Anybody else tried this?

    (I know there are commercial programs that will do this, but I am a DIY type and cheap, too)

  2. #2
    Join Date
    Mar 2006
    Posts
    1625
    no I would just open the .stl file( in mastercam) and verify location from cad system if you need to send me an e-mail and I could do it for you
    [email protected]

  3. #3
    Join Date
    Jun 2005
    Posts
    180
    Thanks, but this is more of a generic problem. I have some .stl files that I want to be able to route on my CNC router. I want to write my own program to do this. I already have written a routine for machining based on a bitmap, and I would like be able to do a .stl file too.

  4. #4
    Join Date
    Mar 2006
    Posts
    1625
    try downloading a copy of mastercam demo .stl is one of the formats that they open

  5. #5
    Join Date
    Sep 2003
    Posts
    1113
    stlworks (www.Imsrv.com as I recall)
    it works and there is /was a trial option. Nearly as good as a free for a DIY....
    Experience is the BEST Teacher. Is that why it usually arrives in a shower of sparks, flash of light, loud bang, a cloud of smoke, AND -- a BILL to pay? You usually get it -- just after you need it.

  6. #6
    Join Date
    Aug 2004
    Posts
    61
    I use MeshCAM for stl files. Really easy! Low cost too, and demo available.

    Frank

  7. #7
    Join Date
    Jul 2005
    Posts
    82
    rweatherly,

    Don't worry, i'm not gonna tell you to download something, I understand you want to write it yourself I've written a program to do exactly what yer talkign about, it's not fancy, but it gets the job done. My file format of choice was DXF though, but basically my program loads the DXF into my Model class, which is composed only of Triangulated Polygons, which sounds like what a STL file has, just triangulated polygons. For a while i was going to support both quads and tri's but realized there was no benefit and a waste of time hehe...

    anyway, a brief way of how I did it was load the stl into a Model class (granted i'm talking more java/c++ fashion here then straight c, not sure what you are programming in, doesn't really matter). Once all the polygons are loaded, you need a Ray intersection algorithm. Which I attempted for about an hour to do and mine only worked 99% of the time, which isn't enough for G-Code unless you want random deep spots poked into your model. So I downloaded a library that had ray->polygon intersection routines and just used that.

    Of course it's all easy in theory, I had a gridsize setup, and basically the G-codes are done based upon that, then there's an optimization routine to remove G-code that is milling large 0 depth areas... also i wrotee a routine to optimize the G-code so there are way fewer lines, basically if you take 3 points of a g-code, detect the degree difference between them, if it's low enough remove the middle point, interating through the entire g-code file... LinuxEMC was having a fit with my enourmous g-code file and wasn't processing enough, so this helped a lot, and the model remains intact.

    I'm not really sure i'm answering anything here, basically the key is a ray->polygon intersection routine, which you run against EVERY polygon, unless you want to get into BSP's and all sorts of complex routines, but lets keep it simple, just go through every polygon. and of course the ray start point is like +1000Z X Y (whereever you want to calculate) then it points straight down -1000Z same XY... and you loop through them and find the intersection height. then XY you move around in a grid fashion of course.

    My advice is to find library's to help you out.. unless you want to learn 3d math, which is fun, but will take a while to learn. game developer sites is a great resource for this stuff though..

    good luck to ya,
    Ross

  8. #8
    Join Date
    Jun 2005
    Posts
    180
    Thanks, that's basically what I am trying to figure out how to do. I will check out the sites.

  9. #9
    Join Date
    Jun 2005
    Posts
    180
    I think I figured it out. I really did not understand the ray intersection equations, so I simplified it a bit (at least for me).

    Once I converted the .stl from binary to decimal (not a small task), I set up a matrix that had a position for each G code machining move. I looked at each .stl triangle to see what machining points lied inside it, then calculated the Z height for those points, filling in the matrix as I went through each triangle. The completed matrix was used to generate the G-code.

    This seems to work, although I have not machined it. (I have a routine that converts the z heights to a bitmap so I can get an easy impression of what the final machining looks like -- it's a lot quicker than using an nc simulator)

  10. #10
    Join Date
    Aug 2008
    Posts
    1
    It is truely a good idea to use STL model to produce G code. I am also intrested in this project.

  11. #11
    Join Date
    Jul 2007
    Posts
    11
    Hello,
    i am trying same thing with a stl. But i try to build a offset surface wuch will be the tiilpath for end ballmill.
    Slicing through the model is very easy. If you slice along the z- axis take any z coo you want. Then sub fro, every triangle this z value. If you get for a corners of the triangle the same sign (+ or -) this will nit cit the plan. If the a different you must calculate the crossingpoints from the triangle edge and the plan. This point will give a line on the plan. U can look fir the source if you want. Written in C.

    regards Holger

  12. #12
    Join Date
    Jul 2005
    Posts
    181
    Quote Originally Posted by holger View Post
    Hello,
    i am trying same thing with a stl. But i try to build a offset surface wuch will be the tiilpath for end ballmill.
    Slicing through the model is very easy. If you slice along the z- axis take any z coo you want. Then sub fro, every triangle this z value. If you get for a corners of the triangle the same sign (+ or -) this will nit cit the plan. If the a different you must calculate the crossingpoints from the triangle edge and the plan. This point will give a line on the plan. U can look fir the source if you want. Written in C.

    regards Holger
    Yes, what you described sounds like how I would do it:

    You define a plane for a given Z Level. Then you intersect every triangle in the model with the plane. Most triangles will not intersect. Some will intersect at a point and some will intersect at a line. All of the intersections then need to be sorted in either clockwise or CCW order and linked together. This gives you a profile around the model. What complicates things is that there could be multiple pockets and each one needs to be independently sorted and linked.

    For a ball nose cutter and Z level machining you can pretend the cutter is a sphere of the same radius as the cutter. Then calculate the offset based on the radius and depth of cut. Hopefully you can make the assumption that the model being cut is convex with respect to Z and thus every deeper level is at least as large as the higher level. This simplifies gouge checking and will be true for most any model which could be cut in 3 axis.

  13. #13
    Join Date
    Sep 2010
    Posts
    0
    hi frnds...am doing a project on rapidprototyping...i hv converted the 3D model to .stl format...now i need to get the coordinates from the .stl file so that i can focus the laser beam on those coordinates to cure them to form a solid model...is there any softwares available to get the coordinates?...

  14. #14
    Join Date
    Apr 2005
    Posts
    263
    opencamlib has functions for dropping down along the z-axis a cutter at a given (x,y) position.
    There's also functions for pushing the cutter into contact with the STL model along the x and y axes. If you do this for a lot of x and y values you get a mesh and you can trace around the mesh to get waterline loops.
    These paths are useful for milling, not so sure what the correct approach for 3D printing or laser-curing is.

    http://code.google.com/p/opencamlib/

    AW

  15. #15
    Join Date
    Sep 2010
    Posts
    0
    Hello 2all,

    Can anyone tell me that how to decode the .stl file or how can I read that file??

    I have one .stl file but whenever I tried to open it in notpad or wordpad, it comes in some unreadable form.
    So anyone have some code or something like that to read this file?

    Thanks in Advanced,
    ~Dhr

  16. #16
    Join Date
    Apr 2005
    Posts
    263
    this python script should be able to read most STL files:
    http://code.google.com/p/opencamlib/...ib/STLTools.py

  17. #17
    Join Date
    Sep 2010
    Posts
    0
    hey andy,
    thanks very much.

    I dont know python, but i will convert it into java or c++ language.

    Thanks again..

    ~Dhr1

  18. #18
    Join Date
    Sep 2010
    Posts
    0
    Hello,

    I am not able to find converter python to java.
    So you have any code that read stl in java?

    Thanks,
    ~Dhr1

  19. #19
    Join Date
    Apr 2005
    Posts
    263
    here is an STLReader class in c++ which reads an STL file (possibly only ASCII, not binary)
    http://code.google.com/p/opencamlib/.../stlreader.cpp
    it should be fairly straightforward to convert to Java if you want that...

  20. #20
    Join Date
    Sep 2010
    Posts
    0
    Hello,

    Thanks a lot for this.

    ~Dhr1

Page 1 of 2 12

Similar Threads

  1. Gcode file samples
    By safecnc in forum G-Code Programing
    Replies: 4
    Last Post: 12-21-2010, 07:38 PM
  2. Need gcode or dxf file for drilling UHU PCB
    By visky in forum UHU Servo Controllers
    Replies: 0
    Last Post: 10-07-2008, 08:45 PM
  3. Is there any way to add notes to a gcode file?
    By Anokiernan in forum G-Code Programing
    Replies: 4
    Last Post: 02-22-2008, 04:11 AM
  4. Can Someone Covert File To Gcode?
    By bcnc in forum CNC (Mill / Lathe) Control Software (NC)
    Replies: 21
    Last Post: 06-27-2007, 03:16 AM
  5. How to mirror GCode file?
    By anoah in forum Uncategorised CAM Discussion
    Replies: 6
    Last Post: 07-08-2003, 06:26 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •