Back to project page physics.
The source code is released under:
GNU General Public License
If you think the Android project physics listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2003-2013 Adobe Systems Inc. All Rights Reserved. // This software is proprietary; use is subject to license terms. package com.nuaavee.physics.model.layer; //w ww . j ava2s . c om import android.graphics.Canvas; import com.nuaavee.physics.model.action.Actionable; /** * @author Adobe Systems Inc */ public abstract class Layer extends Actionable { public abstract void draw(Canvas canvas); }