Thanx. It seems that the various settings need to be used with the Trial and error method, depending on the stl file is beeing used.
Well, all the models seem to be properly oriented in blender at least. Seems I have to just changes axes orientation first in blender. I am not good at it and I have to make a little more work first to learn the ropes.
Glad I found this thread. Seems I am having a little bit of a hold up launching the GUI interface. Per the README it says open up the EGS-GUI.EXE application but there is no .exe file in the file I download from Github. I looked through the thread and it seems like i may need to download Python 3.5 or 2.7? I watch Sixxgun's video about 7 times now but sadly he already has the GUI interface launched so I do not see how it is actually opened if it is not just a simple double click on a .EXE file. Any help is welcome. Thanks.
I must have downloaded a it without the GUI I have found it but had to click another link farther down on the front page. Thanks for the help!
The Tactician: i cant read what the error is PACTARIGAR: its saying that a value that is being outputted in line 196 could not be converted into a number since its sending out a text value The Tactician: so i need to turn the 300 into a smaller number then 196? PACTARIGAR: no im saying that line 196 is giving the code a text value like a word but the code that tales that va;ue needs it in the form of a number which its having a hard time because you cant convert text into a number format without a script built into the code PACTARIGAR: line 196 is in the code PACTARIGAR: its a file or coding issue PACTARIGAR: i think
also i need help with turning this ship around as you can see its on its side, sideways, if you can fix it here is the model https://www.thingiverse.com/thing:1539463
k so this is wayyyyy out of my field im no coder but im using EGSTools and i want to use this model https://www.thingiverse.com/thing:878704but there is an error as seen below, can some help and give me the model with the fix code or tell me how to do it myself? File "empyrion.py", line 196, in solid_to_triangles * [float(i) for i in line.strip().split(" ")[1:]]), ValueError: could not convert string to float:
Change the "i" to a number ? Like 1 or 1.0 ? The code could not execute because it encountered a "string" character (letter) instead of a "float" (decimal number). This "string" must have been encountered where a number should have been entered (space, comma, "", /, etc - check for these).
Yes, and as is says "for "i" in line..." means in that line the "number" found was a "string". Wherever the "i" variable is in the following code has to be replaced. Edit : try removing the " : " after the " 1 " in the last bracket ? I'm not familiar with python script... Here's some info on the "split" function : https://www.dotnetperls.com/split-python