Back to project page min3d.
The source code is released under:
MIT License
If you think the Android project min3d 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.min3d.lib.vos; //from w w w .j a v a 2s.co m import com.min3d.lib.interfaces.IDirtyParent; public class ShadeModelManaged extends AbstractDirtyManaged { private ShadeModel _shadeModel; public ShadeModelManaged(IDirtyParent $parent) { super($parent); set(ShadeModel.SMOOTH); } public ShadeModel get() { return _shadeModel; } public void set(ShadeModel $shadeModel) { _shadeModel = $shadeModel; _dirty = true; // no need for callback } }