Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

TheDamian's scratchpad

by TheDamian (Vicar)
on Jun 01, 2004 at 18:58 UTC ( [id://358396]=scratchpad: print w/replies, xml ) Need Help??

class Shape { has $.x; has $.y; method moveTo($newx, $newy) { $.x = $newx; $.y = $newy; } method rMoveTo($newx, $newy) { .moveTo($.x + $newx, $.y + $newy); } } class Rectangle is Shape { has $.width is rw; has $.height is rw; method draw() { print "Drawing a Rectange at:($.x,$.y), width $.width, height +$.height\n"; } } class Circle is Shape { has $.radius; method draw() { print "Draw a Circle at:($.x,$.y), radius $.radius\n"; } } @scribble = (Rectangle.new(x=>10, y=>20, width=>5, height->6), Circle. +new(x=>15, y=>25, radius=>8)); for @scribble -> $ashape { $ashape.draw; $ashape.rMoveTo(100, 100); $ashape.draw; } $arectangle = Rectangle.new(x=>0, y=>0, width=>15, height=>15); $arectangle.width = 30; $arectangle.draw;
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-03-19 05:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found