How can I print in Android's logcat?
Hi all, I'd like to use the Android's logcat to display some values computed in my application. Is it possible to do so? I tried to use the function ofLogNotice, but it does not display anything on...
View ArticleHow can I print in Android's logcat?
main.cpp ofSetLogLevel(OF_LOG_NOTICE); ofApp.cpp ofLogNotice("ofApp") << "Your string data" << yourintdata;
View ArticleProblems with Emscripten
So I'm following the instructions specified on this site to install emscripten and I am having some difficulty. I'm running the most recent git version of openFrameworks with QtCreator on the most...
View ArticleSkipping a single number in a for loop
So this question is not specific to Open Frameworks but the community here is awesome so I will ask it here. I am trying to create a simple checkers game. I have some code that checks if the piece has...
View ArticleSkipping a single number in a for loop
for(i = 0 ; i < 12 ; i++){ if (i == 7 || i == 9) { continue; // Goes to the next iteration. } else { ofSetColor(200); ofCircle(blackLocX[i], blackLocY[i], pieceR); } } ... that said, there is...
View ArticleSkipping a single number in a for loop
Wonderful. I have already thought of where my plan will fail down the road. But like I said one thing at a time. Thanks!
View ArticleHow to reset ofRotate to original position
I'm drawing lots of objects around a circle by incrementing an angle val passed into ofRotate() a certain number of degrees every time I loop, as follows: void ofApp::setup(){ angle = 0.1; } void...
View ArticleHow to reset ofRotate to original position
if you wrap ofRotate(...) in push and pop matrix calls you can return to the prev rotation: ofPushMatrix();ofRotate(...)ofPopMatrix();
View ArticleUsing native Cocoa frameworks with OF
I'm currently working on a project that will run on mac. In it, I need to find the location of the device that program is currently running on. I have used Apple Cocoa APIs before, and if possible,...
View ArticleExponential Shadow Mapping
Never mind, I found how to do it.For anyone that might be interested, you have to edit at the mainScene.frag, at the material structure, the second property (diffuse) to accept a variable that will be...
View ArticleSkipping a single number in a for loop
If you want to skip every 3rd circle, you can use the modulo operator (%), it gives you the remainder of a division of two values: for(i = 0 ; i < 12 ; i++){ if (i % 3 == 0) { //3 divided by 3 has...
View ArticleLibusbemu problem + ofxKinect
franc! i just had the same exact issue right now, and i've been trying to fix it for 2 hours and you are the ONLY person on the internet with this error! :') it took me so long to figure this out......
View ArticleMSYS2 0.9.0 Installation Problems
Hi!I am trying to install 0.9.0 MSYS versiĆ³n, but I come to a couple of problems.First, very silly thing, the path suggested for cd your_oF_directory/scripts/win_cb/msys2./install_dependencies.sh`...
View ArticleMSYS2 0.9.0 Installation Problems
I just downloaded the last version on github and that problem disappeared.Compiling an example -the very 3DPrimitiveExample- threw no problems but when executing it, look like it cannot find the...
View ArticleMSYS2 0.9.0 Installation Problems
Copying the fmodex.dll found at /export/msys2 made the thing work.This makes me think there is a problem with the importing of the dlls.
View ArticleMember access into incomplete type 'ofAppiOSWindow'
I have attempted to build the iosNativeARCExample. First, I should note that the ofApp.h and ofApp.mm files are missing from that example. I brought them in from the iosNativeExample and then built. I...
View ArticleMSYS2 0.9.0 Installation Problems
Using QT solves everything, it imports the dll.Sorry for the really-begginer post, but I hope this help somebody if has to face the same process.Best,Diego
View ArticleMember access into incomplete type 'ofAppiOSWindow'
RonH: iosNativeARCExample Maybe a line of the four files has been deleted. (CircleAppViewController.mm, ImageAppViewController.mm, SquareAppViewController.mm, TriangleAppViewController.mm). #import...
View ArticleSmall preview addons ofxFurry 2
Hello guys, I am making a porting ofxFurry for openFrameworks 0.9. I leave here the link of the new branch:https://github.com/kashimAstro/ofxFurry/tree/of_0.9RC2 notes: Version of GLSL and been...
View Article