Happy Valentine mari forked:9favorite:27lines:48license : All rights reserved modified : 2009-02-14 22:03:38 Embed Tweet package { import flash.display.Shape; import flash.display.Sprite; import flash.events.Event; import flash.text.TextField; import flash.text.TextFormat; [SWF(width="400", height="400", backgroundColor="0xFFFFFF", frameRate="30")] public class StValentine extends Sprite { private const SCALE:int = 40; private var container:Sprite; private var tf:TextField; public function StValentine() { container = new Sprite(); container.x = stage.stageWidth/2; container.y = stage.stageHeight/2; addChild(container); tf = new TextField(); tf.x -= 60; tf.y += 10; tf.text = "Happy Valentine"; tf.autoSize = "left"; tf.setTextFormat(new TextFormat("Helvetica", 16, 0xff00ff)); container.addChild(tf); var sp:Shape; var r:Number = 0.0, theta:Number = 0.0, z:Number = 0.0; for(var i:int=-Math.PI*8; i<=Math.PI*8; i++) { for(var j:int=-8; j<=8; j++) { theta = i/8; z = j/8; r = 4*Math.sqrt(1 - z*z)*Math.pow(Math.sin(Math.abs(theta)), Math.abs(theta)); sp = new Shape(); sp.graphics.beginFill(0xff007f, 0.5); sp.graphics.drawCircle(0, 0, 4); sp.graphics.endFill(); sp.x= SCALE*r*Math.sin(theta); sp.y= SCALE*r*Math.cos(theta); sp.z= SCALE*z; container.addChild(sp); } } addEventListener(Event.ENTER_FRAME, onEnterFrame); } private function onEnterFrame(e:Event):void { container.rotationY++; container.rotationX++; } } } Code Fullscreen Preview Fullscreen hacker_lra4m.. TIAGODJF whitewillow FlashFit TUNCAYS siouxcitizen.. minon nyamogera paq tkinjo alumican_net.. web_shiino s26 wanson clockmaker naoto5959 MoMNi uly zahir asnike : happylovevalentinegood!!!!!!! bkzen : 短い! k0rin : コード短い berian : algorithmハートの模様 ish_xxxx : 3d inosyan : cute ton : 短い・・・! mash : 3dコードの短さに感動した 3d algorithm happy love valentine Math.abs rotationX rotationY Math.pow addChild Math.sqrt addEventListener Math.PI Math.cos text TextFormat Math.sin Event.ENTER_FRAME Event Sprite int Number sort new page view favorite forked pv178 forked from: Happy Valentine leicay forked:0 favorite:0lines:47 (diff:5) pv314 forked from: Happy Valentine yo0_0oy forked:0 favorite:0lines:45 (diff:19) pv426 forked from: Happy Valentine hacker_crgfx2ih forked:1 favorite:0lines:48 (diff:1) pv279 forked from: Happy Valentine pasodania forked:0 favorite:0lines:46 (diff:5) pv277 forked from: Happy Valentine madfrank forked:0 favorite:0lines:48 (diff:5) pv228 forked from: Happy Valentine koutan forked:0 favorite:0lines:48 (diff:2) pv218 forked from: Happy Valentine koutan forked:0 favorite:0lines:48 (diff:4) pv209 forked from: Happy Valentine ljjjk forked:0 favorite:0lines:48 (diff:9) 1 2NEXT