larsberg / ofxMarchingCubes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

methods missing?

wasawi opened this issue · comments

Hi I just cloned your addon and i get some errors.
it seems that some methods are missing.. but I might be doing something wrong..

Here is what I get:

testApp.cpp:67:12: Too few arguments to function call, single argument '_threshold' was not specified
testApp.cpp:138:10: No member named 'getUsingVbo' in 'ofxMarchingCubes'
testApp.cpp:139:8: No member named 'useVbo' in 'ofxMarchingCubes'
testApp.cpp:141:8: No member named 'useVbo' in 'ofxMarchingCubes'

Please let me know
thanks!

Thanks for the heads up, I made some changes for another project recently and I forgot to update the example. Sorry about that!
Let me know if there are any other issues or suggestions. btw, you you may want to check this out if your looking for higher resolutions/speeds: https://github.com/chriskiefer/MarchingCubesGPU

Got these errors trying to build the example project with OF 0.8.4:

src/main.cpp: In function ‘int main()’:
src/main.cpp:8:2: error: ‘ofGLWindowSettings’ was not declared in this scope
  ofGLWindowSettings settings;
  ^
src/main.cpp:8:21: error: expected ‘;’ before ‘settings’
  ofGLWindowSettings settings;
                     ^
src/main.cpp:9:2: error: ‘settings’ was not declared in this scope
  settings.setGLVersion(4,3);
  ^
src/main.cpp:12:25: error: ‘ofCreateWindow’ was not declared in this scope
  ofCreateWindow(settings);