Skip to content

Commit 14682a1

Browse files
committed
rename GraphEvolver package to match filename
1 parent 63bb86f commit 14682a1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/PDL/Demos/TriD1.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ my $to = PDL->pdl(ulong, [1,2,3,1,0,2,3,0,1,2]);
197197
my $fromto = $from->t->append($to->t);
198198
my @names = map ' '.join(",",@$_), @coords;
199199
# Coords must be float, else will get converted and not flow
200-
my $e = PDL::GraphEvolver->new(PDL->pdl(float, @coords));
200+
my $e = PDL::Graphics::TriD::MathGraph->new(PDL->pdl(float, @coords));
201201
$e->set_links($from,$to,PDL->ones(1));
202202
my $c = $e->getcoords;
203203
my $graph = PDL::Graphics::TriD::get_new_graph(); # also clears

lib/PDL/Graphics/TriD/MathGraph.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ the copyright notice should be included in the file.
2828
2929
=cut
3030

31-
package PDL::GraphEvolver;
31+
package PDL::Graphics::TriD::MathGraph;
3232
use PDL::Lite;
3333
use PDL::ImageND ":Func";
3434

0 commit comments

Comments
 (0)