frocessing - lesson 1
円を描く
♥0 |
Line 8 |
Modified 2009-09-12 22:51:23 |
MIT License
archived:2017-03-20 04:59:10
ActionScript3 source code
/**
* Copyright mathatelle ( http://wonderfl.net/user/mathatelle )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/3foj
*/
// 円を描く
package {
import frocessing.display.*;
public class FrocessingLesson extends F5MovieClip2DBmp{
public function FrocessingLesson() {
ellipse(width/2, height/2, width/2, height/2);
}
}
}