Two-headed turtle

jjohn on 2003-05-30T16:26:18

Whoa!


FESTIVAL!!!!

zorknapp on 2003-05-30T19:26:09

Looks like something out of a bad Gamera movie...

Eh?

chaoticset on 2003-06-16T17:09:54

He said it appears that one of the heads controls the front pair of legs and the other the back.

# Maybe two heads will be better than one?

my $left = new Head;
my $right = new Head;

# Default leg controls will cause collisions,
# better to have averaged cross-control.

my $rear = (Leg->new(), Leg->new());
my $front = (Leg->new(), Leg->new());

# That's too much work, I'll just stick in a
# just a quick hack for now, will provide
# averaged cross-control on next version

$left{'legs'} = \$rear;
$right{'legs'} = \$front;