Back to project page android-plotter.
The source code is released under:
Apache License
If you think the Android project android-plotter 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 org.solovyev.android.plotter; /*from ww w. jav a 2 s . co m*/ import javax.annotation.Nonnull; public interface PlottingView { void requestRender(); void zoom(boolean in); void resetZoom(); boolean post(@Nonnull Runnable runnable); void set3d(boolean d3); }