-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3D transforms added #6
base: master
Are you sure you want to change the base?
Conversation
Hi! From what I understand, this would still require four circles during calibration when only three could be used for 3D case, right? Maybe later this could be split into two cases to simplify calibration. |
@@ -2,7 +2,8 @@ cmake_minimum_required(VERSION 2.8) | |||
project(whycon) | |||
|
|||
# set some flags | |||
add_definitions(-std=c++11) | |||
#add_definitions(-std=c++11) | |||
add_definitions(-std=gnu++0x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any particular reason for this? c++11 is supposed to be more standard. Moreover, I read gnu++0x flag is deprecated in favor of c++11.
Hi Matias, |
Ah, ok. But is that what is implemented now? Or that could be later added? Ok, let's leave that flag then. I suspect it is due to older compilers. May On Mon, Sep 28, 2015 at 8:49 AM, Tom Krajnik notifications@github.com
|
there is no service as stated in wiki set_axis/set |
Set axis now saves 3D transform information and whycon uses it:).