Stereolithography file to GCode

Page 1 of 2 12 LastLast
Results 1 to 20 of 34

Thread: Stereolithography file to GCode

  1. #1
    Registered
    Join Date
    Jun 2005
    Location
    USA
    Posts
    180
    Downloads
    0
    Uploads
    0

    Default 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)

    Similar Threads:


  2. #2
    Member
    Join Date
    Mar 2006
    Location
    Boston
    Posts
    1625
    Downloads
    0
    Uploads
    0

    Default

    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
    mikelakeside@comcast.net

    Last edited by lakeside; 03-27-2006 at 04:53 PM.


  3. #3
    Registered
    Join Date
    Jun 2005
    Location
    USA
    Posts
    180
    Downloads
    0
    Uploads
    0

    Default

    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
    Member
    Join Date
    Mar 2006
    Location
    Boston
    Posts
    1625
    Downloads
    0
    Uploads
    0

    Default

    try downloading a copy of mastercam demo .stl is one of the formats that they open



  5. #5
    Gold Member High Seas's Avatar
    Join Date
    Sep 2003
    Location
    Malaysia/Australia/NZ/USA
    Posts
    1113
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Aug 2004
    Location
    Canada
    Posts
    61
    Downloads
    0
    Uploads
    0

    Default

    I use MeshCAM for stl files. Really easy! Low cost too, and demo available.

    Frank



  7. #7
    Registered
    Join Date
    Jul 2005
    Location
    USA
    Posts
    82
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Jun 2005
    Location
    USA
    Posts
    180
    Downloads
    0
    Uploads
    0

    Default

    Thanks, that's basically what I am trying to figure out how to do. I will check out the sites.



  9. #9
    Registered
    Join Date
    Jun 2005
    Location
    USA
    Posts
    180
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Aug 2008
    Location
    P.R.CHINA
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default

    It is truely a good idea to use STL model to produce G code. I am also intrested in this project.



  11. #11
    Registered
    Join Date
    Jul 2007
    Location
    deutschland
    Posts
    11
    Downloads
    0
    Uploads
    0

    Default

    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
    Member Death Adder's Avatar
    Join Date
    Jul 2005
    Location
    USA
    Posts
    181
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Sep 2010
    Location
    india
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Apr 2005
    Location
    finland
    Posts
    263
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Sep 2010
    Location
    india
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Apr 2005
    Location
    finland
    Posts
    263
    Downloads
    0
    Uploads
    0

    Default

    this python script should be able to read most STL files:
    http://code.google.com/p/opencamlib/...ib/STLTools.py



  17. #17
    Registered
    Join Date
    Sep 2010
    Location
    india
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    hey andy,
    thanks very much.

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

    Thanks again..

    ~Dhr1



  18. #18
    Registered
    Join Date
    Sep 2010
    Location
    india
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Apr 2005
    Location
    finland
    Posts
    263
    Downloads
    0
    Uploads
    0

    Default

    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
    Registered
    Join Date
    Sep 2010
    Location
    india
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    Hello,

    Thanks a lot for this.

    ~Dhr1



Page 1 of 2 12 LastLast

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
  •  


About CNCzone.com

    We are the largest and most active discussion forum for manufacturing industry. The site is 100% free to join and use, so join today!

Follow us on


Our Brands

Stereolithography file to GCode

Stereolithography file to GCode