ofxDSHapVideoPlayer (Windows)
Hey folks, As part of Second Story in Portland, I wanted to share a brand new addon with the community: https://github.com/secondstory/ofxDSHapVideoPlayer ofxDSHapVideoPlayer is a DirectShow-based...
View ArticleProgrammatically enter full screen on launch (OSX)
HiI've designed an app that launches to 1080p dimensions on launch for an installation. Unfortunately I still see the window title bar. To eliminate this I need to manually choose 'Window > Enter...
View ArticleProgrammatically enter full screen on launch (OSX)
Hi, There are a few ways to do so. You can do ofSetupOpenGL(1920, 1080, OF_FULLSCREEN) in main. Or you can do ofSetFullscreen(true) or ofToggleFullscreen() in setup.
View ArticleofxDSHapVideoPlayer (Windows)
I'm glad you did this, I had every intention of making a port once they made the DS drivers but then got sidetracked with real life.
View ArticleSave vector to file and read it later?
ofMesh has a save() method which may save you some time http://www.openframeworks.cc/documentation/3d/ofMesh.html#!show_save if it is not 3D data - there is also ofBufferToFileandofBufferFromFile
View ArticleWhat thread does update()/render() occur on?
draw() definitely runs on the main ui thread. i'm not sure about onTouch() and update(), i think that might differ from platform to platform. you can always find out by using a debug point. the...
View ArticleSoftware XY-Oscilloscope
hey ho! i just published version 1.0.5 of my xy-oscilloscope here: http://asdfg.me/osci/ a video of me testing it on some special audio files:...
View ArticleChoppy audio with ofxAndroidSoundPlayer (MediaPlayer)
Just a small follow-up, I've tried what feels like a hundred different ways to get MediaPlayer to work to no avail. Using uncompressed audio (.wav.) didn't seem to help at all. The number of active...
View Article0.9.0 Release Candidate 2
Awesome job guys -- thank you. Small issue: the changelog linked here http://openframeworks.cc/0.9.0/download/ appears broken. Can someone please post the correct URL? Thanks.
View ArticleHow to run update() and draw() in keyPressed() event
Hi all, I have used Processing and recently moved into ofx.I am wondering is it possible to call update() and draw() function in the KeyPressed event, such as the code below. void testApp::update(){...
View ArticleQuick draw() test with keyPressed() event
Hi all, I want to quickly test the draw() results in the key event, however, unlike Processing, I need to set a global variable and draw it when I press some key. It's tedius for quick draw test...
View ArticleArea from random points
Hi all, Is there any ofx function/library returns area after triangulation?I am developing on windows Visual Studio and it is difficult for me to setup a project with addons for XCode, such as...
View ArticleFix for Xcode 7 and OF 0.8.4 (opensslconf.h not found)
i done a quick video on this for my openframeworks tutorial series. obviously thanking @admsyn
View ArticleHow to get the orientation from Android?
Hi guys, I am trying to retrieve data orientation from Android, but I do not want to use the accelerometer because I think it could be not that accurate. I am thinking on using the gyroscope instead....
View ArticleError adding ofxPd to existing android project: Undefined symbols for...
Hi, I've have built an android application with OF and I want to add functionalities from ofxPd. The application works until I add ofxPd.I have added the ofxPd folder to the addons folder of my...
View ArticleBuilding for android: problems with Poco
It is solved. I needed the addon ofxNetworkUtils. Thanks
View ArticleWhat thread does update()/render() occur on?
the java side in android creates 2 threads one for the opengl calls and another for the ui. in OF the ui events are accumulated on a queue and sent to the GL thread to make it behave as in other...
View ArticleError adding ofxPd to existing android project: Undefined symbols for...
If, as suggested in here: Xcode 4 Error: Undefined symbols for architecture i386 Hi. I get here looking about the same error, but I solved it creating a new project and importing the files from the...
View ArticleHow to get the orientation from Android?
You need to get only "currentDegree" value from Java to openFrameworks. Then you can do the rest in the C++ side. If you kindly check the code under oFdir/addons/ofxAndroid/src, you can find a lot of...
View ArticleFull screen and application focus issue
I have a somewhat tricky problem in that I need to have my OF application run fullscreen, while another app which acts as an audio trigger for the OF application, receives 'focus' on launch in order...
View Article