Use ofGraphics shape as image mask
you can also get a mesh for a circle (or any other shape) really eas using ofPath: ofPath path; path.arc(x,y,r,r,0,360); ofMesh mesh = path.getTessellation(); also in 0.9.0 you can set an alpha mask...
View ArticleForce a reboot without OfxWatchdog
I have an application for a permanent installation that uses a feed from a webcam. Unfortunately this webcam feed sometimes becomes 'frozen' and I haven't been able to figure out why.As a last resort...
View ArticleFramework not found 0.9.0
hmm, to be sure, if you make a new project in 0.9.0 do you see this error? Do you see this error with the examples that ship with 0.9.0 ?
View ArticleUse ofGraphics shape as image mask
arturo: setAlphaMask setAlphaMask is really great so many years of doing this by hand with pixels....
View ArticleDifference between debug and release builds
Other than compiled file size can anyone summarize the key differences between debug and release builds?
View ArticleDifference between debug and release builds
Debug vs Release general discussion What are the explicit differences between Debug and Release builds as they pertain to openFrameworks? I'm assuming with a Release build you 1) don't have debug...
View ArticleDifference between debug and release builds
yes in release the compiler tries to optimize the code to be faster so the source won't translate to machine exactly as you wrote it but as an optimized version that might alter the order of some...
View ArticleOfxOpenNI Apple Mach-O Linker (Id) Error
I have also added the discussion on SO: http://stackoverflow.com/q/33681299/2302611Changing the architecture was suggested, that didn't help.
View ArticleDifference between debug and release builds
Thanks Arturo. Have you ever come across an instance where an application worked differently in a RELEASE vs DEBUG deploy, perhaps due to the changing of the order of some calls?Trying to troubleshoot...
View ArticleAre there any plan for supporting CLion?
for posterity: I just came across this. https://github.com/judepereira/44a
View ArticleDifference between debug and release builds
debug and release also change the memory layout and timing -- sometimes errors like uninitialized variables or array access errors can occur in one of the two compiled types (debug / release), and...
View ArticleFramework not found 0.9.0
Here is my attempt to create a project h93Yedw.gif1218x852 1.42 MB
View ArticleForce a reboot without OfxWatchdog
If you just need to restart the computer, add your account to /etc/sudoers with NOPASSWD keyword and system("sudo reboot"); should do the job. I don't know what feature you are talking about...
View ArticleopenFrameworks 0.9.0-RC2 in Android Studio on OSX 10.11.1:...
The emulator has the default of 200 MB, though I also tried it with 256/512/1024 MB. … after changing the installLocation to 'auto' the emulator starts the emptyExample. The Nexus 5 does not have an...
View ArticleFramework not found 0.9.0
when I look at the error in that gif it says "framework not found -stdlib-libc++" -- is that the error you see? (above it says something about poco, but this seems more related to xcode). what version...
View ArticleFramework not found 0.9.0
for the examples I get the same error. Screen Shot 2015-11-13 at 2.39.06 PM.png1539x619 740 KB
View ArticleFramework not found 0.9.0
what version xcode? If you hit yellow "update to recommended settings" what does that do? zach
View ArticleFramework not found 0.9.0
xCodeVersion 7.1 (7B91b) I just tried what you suggested still no luck.
View ArticleForce a reboot without OfxWatchdog
some other reboot approaches via terminal that can also work with system(...): apple.stackexchange.com Using The Terminal Command to Shutdown, Restart and Sleep My Mac? asked by Simon on 09:55AM - 28...
View ArticleFramework not found 0.9.0
sargentsurg: Version 7.1 I'm downloading another xcode to test... I am 6.3.2 without issue, I know folks have tested on xcode 7 before and this didn't come up. were you moving around xcode? It feels...
View Article