Warning : before upgrading to Xcode 7
There may be a better way EDIT: there's a simpler version of this fix that doesn't involve manually installing openssl The issue looks like openssl has been removed. You can install openssl with...
View ArticleSvg image to Ilda Laser - normalisation of the polyline?
Hi Drakko ! Thank, Does normblob.contour come from ofxBlobTracker ? Cyril
View ArticleFix for Xcode 7 and OF 0.8.4 (opensslconf.h not found)
When building an OF 0.8.4 project with Xcode 7, you may see the following error: 'openssl/opensslconf.h' file not found To fix this, open the file CoreOF.xcconfig in...
View ArticleFix for Xcode 7 and OF 0.8.4 (opensslconf.h not found)
openssl is inside the libs folder of OF, both includes and the binary libs so there shouldn't be any need to install it in the system. not sure why xcode is not finding it though
View ArticleFix for Xcode 7 and OF 0.8.4 (opensslconf.h not found)
Ah, I missed that thanks @arturo. It looks like openssl wasn't included in the header list in 0.8.4 though, maybe it's been using an SDK provided openssl the whole time? As in, there's no...
View ArticleSvg image to Ilda Laser - normalisation of the polyline?
@drakko : I can get 60 fps with this one, but as you can see, there is no distinction between shapes : svg.load("batman.svg"); for (int i = 0; i < svg.getNumPath(); i++){ ofPath p =...
View ArticleOpen frameworks in Windows 10 + Visual Studio 15 RC
Thanks. Having better luck using Codeblocks. My only outstanding hurdle is getting a project that successfully compiles in OSX XCode to compile in Windows X Codeblocks Transferring existing Xcode...
View ArticleHow to modify config.make to include external directory
I'm working on a project where I'm building a library of OF-related .cpp and .h files which I'd like to be able to incorporate into any project I make with the projectGenerator, similar to a ofxAddon....
View ArticleHow to modify config.make to include external directory
in 0.9 or the current nightly builds you can add addons from anywhere, just add the relative path to the addon from the project to addons.make like: ofxGui ../addons/ofxLocalAddon that will add ofxGui...
View ArticleHow to modify config.make to include external directory
Modifying the PROJECT_EXTERNAL_SOURCE_PATHS macro worked! Thank you! Although now when I use the code the screen completely glitches. But that's another problem, I'll try to figure out why that...
View ArticleMaking classes in openframeworks in 2015 vs
I usually add a class but it is not recognized. Basically I'm using the newest build of open frameworks that works with visual studio 2015. This is my class include "ofMain.h" class ofClass{public:...
View ArticleMacam ps3eye Mountain Lion
Okay. Finally had some time to test. So at 640x480 I can only get a max of 4 cams over a USB3 port. Once I add the 5th cam the fames start glitching out (biting the dust). The app does not crash. Just...
View ArticleDynamic buttons
Hi,For ofxButton I don't know, but for ofxToggle I just found this: void ofApp::togglePressed( const void * sender, bool & pressed ) { ofParameter<bool> * v = (ofParameter<bool>...
View Articleruntime_error in older boost when locales are not set
due to a bug in older boost versions oF will crash when using file operations in oF0.9 and if the locales are not set properly (if LC_ALL is not set) here a ticket about this...
View ArticleNew AV performance project 'This City'
Just wanted to share an oF project I've been working on for some time. This one runs a lot like a small game world but controlled by music/MIDI data. Here's a couple of vids, the second explains the...
View ArticleDrawing ofVboMesh with OF_PRIMITIVE_LINES is much slower than...
Thank you arturo! I've tried GL_DYNAMIC_DRAW and GL_STREAM_DRAW. Unfortunately, none of them makes much difference to GL_STATIC_DRAW in this example. I asume the time consuming job is some "actual"...
View ArticleMaking classes in openframeworks in 2015 vs
Please try like this: ofClass.h: class ofClass { public: ofClass(); ~ofClass(); float x; void test(); }; ofClass.cpp #include "ofClass.h" ofClass::ofClass() { } ofClass::~ofClass() { } void...
View ArticleNew AV performance project 'This City'
Really lovely! Thanks so much for the walkthrough too ...
View Article