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.meshes; /* w w w. j av a 2 s . c o m*/ import org.solovyev.android.plotter.Color; import org.solovyev.android.plotter.Dimensions; import javax.annotation.Nonnull; public interface DimensionsAware extends Mesh { void setDimensions(@Nonnull Dimensions dimensions); @Nonnull Dimensions getDimensions(); void setColor(@Nonnull Color color); @Nonnull Color getColor(); }