Back to project page base_controller.
The source code is released under:
Apache License
If you think the Android project base_controller listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.c77.base_driver; /*w w w. j a v a2 s . co m*/ /** * @author jcerruti@willowgarage.com (Julian Cerruti) */ public interface OdometryStatus { double getPoseX(); double getPoseY(); double getPoseTheta(); double getSpeedLinearX(); double getSpeedAngularZ(); }