nav111 / heekscnc

Automatically exported from code.google.com/p/heekscnc
Other
0 stars 0 forks source link

Lost ability to perform machining operations on StlSolids #264

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. import an STL object
2. select it, and add a 'zigzag' operation from the machining menu
3. nothing happens

What is the expected output? What do you see instead?

Expect to see the STLSolid added as a child to the zigzag operation in the stack

What version of the product are you using? On what operating system?

svn trunk r 1240 Ubuntu 10.04

Please provide any additional information below.

It seems STLSolid is not considered as a valid ObjectType in the machining 
operations. a minimal patch is shown below:

Index: ZigZag.cpp
===================================================================
--- ZigZag.cpp  (revision 1240)
+++ ZigZag.cpp  (working copy)
@@ -362,6 +362,7 @@

    switch (object->GetType())
    {
+   case StlSolidType:  
    case SolidType:
    case SketchType:
    case FixtureType:

Original issue reported on code.google.com by ikekr...@gmail.com on 13 Nov 2010 at 9:35

GoogleCodeExporter commented 8 years ago
ok, I made this change for you.

Original comment by danhe...@gmail.com on 14 Nov 2010 at 10:23

GoogleCodeExporter commented 8 years ago
This is done with the "Surface" object now.
www.heeks.net/help/surface
It works with STL objects too.

Original comment by danhe...@gmail.com on 24 Mar 2014 at 5:27