@@ -128,7 +128,8 @@ sub set_default_axis {
128128
129129sub changed {}
130130
131- package PDL::Graphics::TriD::AxesBase ;
131+ package # hide from PAUSE
132+ PDL::Graphics::TriD::AxesBase;
132133use base qw( PDL::Graphics::TriD::Object) ;
133134sub 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;
143145use base qw( PDL::Graphics::TriD::AxesBase) ;
144146use fields qw( NDiv Scale AxisLabelsObj Transform) ;
145147use 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;
203206use base qw( PDL::Graphics::TriD::Object) ;
204207use fields qw( LatticeObj) ;
205208sub 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;
239243use base qw( PDL::Graphics::TriD::LatticeAxes) ;
240244use fields qw( Names Scale) ;
241245use 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;
326331use base qw( PDL::Graphics::TriD::LatticeAxes) ;
327332use fields qw( Names Scale) ;
328333use PDL::Core ' ' ;
0 commit comments