Novice question> PC vs mac >summary of OFX differences
oF is pretty much the same across the various platforms, give or take a library here and there. You can see a list of libraries included here http://openframeworks.cc/about/. C++ compilers are also...
View ArticleOfxbutton + ofParameter
I am currently faking the button by using a toggle with ofParameter and a listener function that also sets the parameter to false, but that's not really cool. I also like the feature to let the event...
View ArticleOfxbutton + ofParameter
the way i see it ofParameter<ofEvent<void>> doesn't make much sense, for every other control the parameter creates an event of it's type that you listen to: ofParameter<float> ->...
View ArticleBest way to draw an array of objects
arturo : you can also just use an ofPath to get the circle already decomposed in triangles but the resulting mesh might have more triangles than necesary: i am trying the simplest way for start. But i...
View ArticleOfxbutton + ofParameter
I am a little late with a lot of things but I can put this on my agenda. It may just take a little while.
View ArticleofVideoPlayer error since of_v0.9.0RC1_vs_release
Both of those codecs aren't natively supported by direct show which is why they are throwing an error. The previous versions use quicktime which supported those codecs, the mov being quicktimes native...
View ArticleofFile Binary Mode
I'm trying to write a simple checksum function. It opens an image file under binary mode & reads blocks of data. For some reason, it doesn't seem to be reading in binary mode. I can't get anything...
View ArticleListbox widget (using ofxhGui): missing file hObject.h
Did you see that I updated the version on GtHub in order to work with OF 0.9 ?
View ArticleofFile Binary Mode
try using read instead of get. get is meant to be used to read strings and it'll stop after the first breakline: http://www.cplusplus.com/reference/istream/istream/get/ another possibility is to use...
View ArticleNovice > ofBaseApp vs ofSimpleApp
Hi1st question> When using the Generator I always extend ofBaseApp but in many of the examples and tutorials I see ofSimpleApp. Are ofBaseApp and ofSimpleApp 'built-in classes? Can they be used...
View ArticleNovice > ofBaseApp vs ofSimpleApp
yes ofSimpleApp is the way ofBaseApp was called until 0.7 or something like that, at some point we changed it's name but it's the same thing, there's actually an alias so you can still use ofSimpleApp...
View ArticleBest way to draw an array of objects
Humm... despite all my efforts, i can't find the way to draw the circle properly... any help appreciated. thanks
View ArticleBest way to draw an array of objects
so the way ofPath creates a mesh for a shape is by using vertices but also indices, i didn't realized about that when i posted my example. there's ways to do it by using ofPath but also using a...
View ArticleProblem with playing a video
Hi ! I really dont know what could have been. The code was right all the time. One time it just started.
View ArticleMulti-device targeting with fmod
Hi is there any new versión of this library? Im getting this errors : ||=== Build: Debug in fafafa (compiler: GNU GCC Compiler) ===|../../../libs/fmodex/include/fmod_errors.h||In function ‘const char*...
View ArticleBest way to draw an array of objects
yes i have already read the ofPath, ofPolyline, ofVboMesh and opendGL doc.I tried with indices. I also tried your example : ofPolyline circle; circle.arc(0,0,radius,radius,0,360); for(int i=0;...
View ArticleMultichanel Sound playing in external usb sound card
Hello everybody. Im trying to play multiple sounds from my external usb sound card. All the information that I found about this subject is old. I don´ even know where to start investigating. My...
View Article