in reply to 3D module
update:Removed unnecessary keeptwiddling3d() loop.#!/usr/bin/perl use strict; use PDL; use PDL::Graphics::TriD; my $coordinates = pdl [[10,10,0], [0,10,0], [1,1,1], [-10,-10,-10]]; my $colors = pdl [[50,50,50], [50,0,50], [50,50,0], [0,0,50]]; points3d $coordinates, $colors, {PointSize=>2};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: 3D module
by thenetfreaker (Friar) on Jan 23, 2006 at 21:54 UTC | |
by BrowserUk (Patriarch) on Jan 23, 2006 at 22:32 UTC | |
|