Problem compiling ofxMaps on OS X
Hi @bakercp, Many thanks for the response! bakercp: what version of openFrameworks are you using? It's the git version, here are the specs: $ cd /.../openFrameworks_git/ $ git status -uno On branch...
View ArticleProblem compiling ofxMaps on OS X
Yeah, it is probably just a gray box. I think all of the HTML text comes out in the console. Keep me posted. Sounds like you are on the right track. As soon as 0.9.0 is officially released, then I'll...
View ArticleConvert path to image?
try using anti aliased fbo's. Add this to your settingssettings.numSamples = 4; //or even 8 if you want
View ArticleConvert path to image?
thanks for the tip @Kj1 a bit better, but not soft enough yet without numSamples = 10
View ArticleTemporary freeze during publishing status - ofxTwitter, ofxOAuth
@Miles thanks for replying.I think your suspect might be the right answer.I tried to put the tweet process in a separate thread with ofThread but it just wasn't tweeting anymore and I haven't figured...
View ArticleConvert path to image?
you can also try to use ofEnableAntiAliasing(); ofEnableSmoothing(); just before or even just after the fbo.begin() call. Did something similar, had also crispy png exports from fbo, lots of trial...
View ArticleConvert path to image?
what usually works nicely too is to render at a bigger size than you are going to draw
View ArticleConvert path to image?
Yep, tried all of this, nothing changes !by the way, numsamples seems limited to 8 ! @arturo what i did is create the path and draw to the fbo at twice the size and then set glPointSize to half the...
View ArticleTemporary freeze during publishing status - ofxTwitter, ofxOAuth
There are some functions that have to run on the main thread, so that might be the case here.I don't know if it's possible to run the video player on the other thread?I haven't used ofthread, so I'm...
View ArticleTemporary freeze during publishing status - ofxTwitter, ofxOAuth
There are some functions that have to run on the main thread, so that might be the case here. I don't know if it's possible to run the video player on the other thread? I haven't used ofthread, so I'm...
View ArticleTemporary freeze during publishing status - ofxTwitter, ofxOAuth
Hi there! I never worked with Twitter, but I did with Tumblr and e-mail attachments. Usually, I would get a lot of issues with the add-ons. Because of time constrains, I decided to do system calls to...
View ArticleParticle System Optimisation Help Needed
For other people coming across this - OF 9 has sorted out the sluggish speed on iPad air 2 (I assume this is because of 64bit architecture)Also big thing that I found for drawing particles - it seems...
View ArticleGetting Started Interactive Projection Floor
If you have the kinect working with blobs, then you should have some coordinate data, with that then you can draw anything on it, for simplicity's sake (this is what I do) I recommend just drawing a...
View ArticleTemporary freeze during publishing status - ofxTwitter, ofxOAuth
@hubris @Miles thanks guys. nice feedback both of you I will try both ways and see what I'll end up with! cheers
View ArticleTemporary freeze during publishing status - ofxTwitter, ofxOAuth
Ahhhh cunning.I normally work on iOS, so interesting to hear a simple alternative whilst on desktop
View ArticleCan Any one tell me why ofImage call update two times?
I don't quite understand your code, but maybe it's the update() in Clone
View ArticleError C2733 second C linkage of overloaded function after moving to OF 0.8.0
For the googlers out there -- got this error in OF084 on Windows 8 in VS2012 when running ofxKinectForWindows2. Commented out the line (i believe in processes.h) and boom up and running.
View ArticlePossible to run ofxLibwebsockets as client and connect to localhost?
I'm trying to get my OF app using the ofxLibwebsockets addon to connect to my localhost on port :4200 and am running into connection issues. I can connect to the echo.websockets.org example in the...
View ArticleHow to rotate and translate a ofxBullet body?
Wow man! I had not seen that you had responded until now! Thanks a lot. I'll check soon. Thanks again for your support and your addon work, of course. PS: btw, On the github issue I wrote you some...
View ArticleCan Any one tell me why ofImage call update two times?
tsin: clone(mom); update(); this is ofImage sourcein clone(mom); it calls update,and after this,it call update again ofImage_& ofImage_::operator=(const ofImage_& mom) {if(&mom==this)...
View Article