Perl Graphics Programming by Shawn Wallace

Perl Graphics Programming by Shawn Wallace

Author:Shawn Wallace
Language: eng
Format: mobi, epub, pdf
Tags: COMPUTERS / Programming Languages / JavaScript
ISBN: 9781449358303
Publisher: O'Reilly Media
Published: 2012-09-26T21:00:00+00:00


# Place a grid of squares on the stage and store the reference to each DisplayItem

foreach my $i (0..$grid-1) {

foreach my $j (0..$grid-1) {

my $item = $m->add($s);

$item->moveTo($i*100, $j*100);

push @displayList, $item;

}

}

# Now create 30 frames; in each frame, move each square

# 1/30th of the way toward the center of the grid, and rotate

# the square 360/30 degrees. Then repeat the same thing in the

# opposite direction, ending up where we started.

my $frames = 30;

my ($cx, $cy) = ($w/2, $h/2);

foreach my $direction (1, −1) { # 1 =in, −1 = out

foreach my $f (1..$frames) {

foreach my $i (0..$grid-1) {

foreach my $j (0..$grid-1) {

$displayList[$i*$grid+$j]->move(

$direction*(int($cx-$i*100)/$frames),

$direction*(int($cy-$j*100)/$frames));

$displayList[$i*$grid+$j]->rotate(360/$frames);

}

}

$m->nextFrame( );

}

}



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Popular ebooks
Deep Learning with Python by François Chollet(12568)
Sass and Compass in Action by Wynn Netherland Nathan Weizenbaum Chris Eppstein Brandon Mathis(7778)
Grails in Action by Glen Smith Peter Ledbrook(7696)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(6409)
Kotlin in Action by Dmitry Jemerov(5062)
WordPress Plugin Development Cookbook by Yannick Lefebvre(3780)
Mastering Azure Security by Mustafa Toroman and Tom Janetscheck(3327)
Learning React: Functional Web Development with React and Redux by Banks Alex & Porcello Eve(3085)
Mastering Bitcoin: Programming the Open Blockchain by Andreas M. Antonopoulos(2867)
The Art Of Deception by Kevin Mitnick(2602)
Drugs Unlimited by Mike Power(2467)
Kali Linux - An Ethical Hacker's Cookbook: End-to-end penetration testing solutions by Sharma Himanshu(2311)
The Innovators: How a Group of Hackers, Geniuses, and Geeks Created the Digital Revolution by Walter Isaacson(2297)
Writing for the Web: Creating Compelling Web Content Using Words, Pictures and Sound (Eva Spring's Library) by Lynda Felder(2261)
SEO 2018: Learn search engine optimization with smart internet marketing strategies by Adam Clarke(2190)
A Blueprint for Production-Ready Web Applications: Leverage industry best practices to create complete web apps with Python, TypeScript, and AWS by Dr. Philip Jones(2136)
JavaScript by Example by S Dani Akash(2134)
DarkMarket by Misha Glenny(2083)
Wireless Hacking 101 by Karina Astudillo(2075)
Full-Stack React Projects by Shama Hoque(1990)