Skip to content

Commit 63bb86f

Browse files
committed
hide Graph utility packages from PAUSE
1 parent e957dc2 commit 63bb86f

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

lib/PDL/Graphics/TriD/Graph.pm

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ sub set_default_axis {
128128

129129
sub changed {}
130130

131-
package PDL::Graphics::TriD::AxesBase;
131+
package # hide from PAUSE
132+
PDL::Graphics::TriD::AxesBase;
132133
use base qw(PDL::Graphics::TriD::Object);
133134
sub normalise_scale { # Normalize the smallest differences away.
134135
my ($this) = @_;
@@ -139,7 +140,8 @@ sub normalise_scale { # Normalize the smallest differences away.
139140
($min, $max);
140141
}
141142

142-
package PDL::Graphics::TriD::EuclidAxes;
143+
package # hide from PAUSE
144+
PDL::Graphics::TriD::EuclidAxes;
143145
use base qw(PDL::Graphics::TriD::AxesBase);
144146
use fields qw(NDiv Scale AxisLabelsObj Transform);
145147
use PDL;
@@ -199,7 +201,8 @@ sub transform {
199201
$point;
200202
}
201203

202-
package PDL::Graphics::TriD::LatticeAxes;
204+
package # hide from PAUSE
205+
PDL::Graphics::TriD::LatticeAxes;
203206
use base qw(PDL::Graphics::TriD::Object);
204207
use fields qw(LatticeObj);
205208
sub add_lattice_axis {
@@ -235,7 +238,8 @@ sub add_lattice_axis {
235238
# x & y in degrees, z = value
236239
# to try:
237240
# make && perl -Mblib -MPDL -MPDL::Graphics::TriD -e '$PDL::Graphics::TriD::Graph::default_axis_class = "PDL::Graphics::TriD::CylindricalEquidistantAxes"; spheres3d pdl("-80 -80 800; 80 80 900")'
238-
package PDL::Graphics::TriD::CylindricalEquidistantAxes;
241+
package # hide from PAUSE
242+
PDL::Graphics::TriD::CylindricalEquidistantAxes;
239243
use base qw(PDL::Graphics::TriD::LatticeAxes);
240244
use fields qw(Names Scale);
241245
use PDL::Core '';
@@ -322,7 +326,8 @@ sub transform {
322326
# Despite name (which is like the UN map), is actually Spherical or Orthographic-style projection
323327
# try this:
324328
# make && perl -Mblib -MPDL -MPDL::Graphics::TriD -e '$PDL::Graphics::TriD::Graph::default_axis_class = "PDL::Graphics::TriD::PolarStereoAxes"; spheres3d pdl("-80 -80 800; 80 80 900")'
325-
package PDL::Graphics::TriD::PolarStereoAxes;
329+
package # hide from PAUSE
330+
PDL::Graphics::TriD::PolarStereoAxes;
326331
use base qw(PDL::Graphics::TriD::LatticeAxes);
327332
use fields qw(Names Scale);
328333
use PDL::Core '';

0 commit comments

Comments
 (0)