- or download this
my @vector = (4.3125, 0.4375);
push @AoA, @vector;
@vector = (4.375, 0.375);
push @AoA, @vector;
- or download this
(4.3125, 0.4375, 4.375, 0.375)
- or download this
my @vector = (4.3125, 0.4375);
push @AoA, \@vector;
@vector = (4.375, 0.375);
push @AoA, \@vector;
- or download this
push @AoA, [4.3125, 0.4375];
push @AoA, [4.375, 0.375];