in reply to How to vector
sub vector { my ($aa) = @_; $aa->[0] = my $one; $aa->[1] = my $two; $aa->[2] = my $three; my $vector = V($one, $two, $three); }
In this function:
I haven't examined Math::Vector::Real at all, but I would suspect things begin to go wrong within the vector() call itself.
Give a man a fish: <%-(-(-(-<
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to vector
by jcklasseter (Sexton) on Jun 19, 2015 at 20:35 UTC | |
by AnomalousMonk (Archbishop) on Jun 19, 2015 at 21:03 UTC |