Using OF Function in a Function
Produces this error:error: no 'float ofApp::distance(int, int, int)' member function declared in class 'ofApp' Sorry I'm still learning...
View ArticleUsing OF Function in a Function
you have to also define it in the h file of ofApp, ie: class ofApp : public ofSimpleApp{ ..... float distance(int n,int valX, int valY); .... }
View ArticleUsing OF Function in a Function
I see in the ofApp.h public: float distance(int n,int valX, int valY); in the ofApp.cpp void ofApp::draw() { float dist = distance(1, 100, 200); } float ofApp::distance(int n, int valX, int valY) {...
View ArticleUsing OF Function in a Function
Okay I'm starting to see how this works but it still produces an error. error: '(valX - ((ofApp*)this)->ofApp::.ofBaseApp::mouseX)' cannot be used as a function
View ArticleUsing OF Function in a Function
#pragma once #include "ofMain.h" class ofApp : public ofBaseApp{ public: float distance(int n,int valX, int valY); void setup(); void update(); void draw(); void keyPressed(int key); void...
View ArticleUsing OF Function in a Function
ofApp.h #pragma once #include "ofMain.h" class ofApp : public ofBaseApp{ public: float distance(int n,int valX, int valY); void setup(); void update(); void draw(); void keyPressed(int key); void...
View ArticleUsing OF Function in a Function
Rancs: float ofApp::distance(int n,int valX, int valY) { float d; d = sqrt((valY-mouseY)*(valY-mouseY)+(valX-mouseX)(valX-mouseX)); return d;} Now changing the mouse getters is better as Zach...
View ArticleAdvice on working with multiple video streams
@barelief Many thanks for your response. I think I've got a solution worked out. Cheers,Stephen
View ArticleHelp Organize SF Creative Coders Meetup
Hello, For the last five years I’ve been organizing a creative coders meetup here in SF that has been all about bringing people with similar interests together to hang out and build friendships whilst...
View ArticleKinect example doesn't work on of 0.8.4
I've resolved the problem by overriding everything inside addons/ofxKinect/libs/libfreenect with my libfreenect build.This happened on of v0.9 and off v0.8.
View ArticleNew (discourse) forum feedback thread
Sharing code lines on the forum is difficult due to need of adding 4 space characters by hand before each line. And -code- tags don't generate the same code indentation and coloring.
View ArticleUsing OF Function in a Function
I will just stick with Zach's method for now. Thanks tho!
View ArticleNew (discourse) forum feedback thread
you can use a triple backtick like: ``` // some code ``` to open and close code blocks, the default syntax will be cpp or you can sepcify the language when opening the code block adding it after the...
View ArticleNew addon: ofxDepthCamera
Hi MattI am working on an implementation. Got registered texture to work, or it looks at least like it. What is the registration exactly doing? What I got, seems as an automatic fitting of the color...
View ArticleError: /bin/ls: cannot access /home/libs/: No such file or directory
Hi, after installing 090 and qtcreator through the recommended web installer, I get projects working on Mac and Windows. Unfortunately, my main system is Linux (well, I am quite happy with KXStudio,...
View ArticleGetting started with Kinect2 + ofx + win10
Hi Guys, I have just got hold of a Kinect2 and would love to work with it in ofx. I am having a hard time figuring out how to get started. The demos from MS works fine. I am on Windows 10 (64 bit)...
View Article