Index: vtkAxisActor.cxx
===================================================================
RCS file: /cvsroot/VTK/VTK/Hybrid/vtkAxisActor.cxx,v
retrieving revision 1.5
diff -u -r1.5 vtkAxisActor.cxx
--- vtkAxisActor.cxx	21 Apr 2008 15:51:47 -0000	1.5
+++ vtkAxisActor.cxx	28 Jan 2009 14:23:26 -0000
@@ -1109,7 +1109,7 @@
 
   y = this->MajorStart;
   numTicks = 0;
-  while (y < p2[1] && numTicks < VTK_MAX_TICKS)
+  while (y <= p2[1] && numTicks < VTK_MAX_TICKS)
     {
     yPoint1[1] = xPoint[1] = yPoint2[1] = zPoint[1] = y;
     // yx portion
@@ -1150,7 +1150,7 @@
     }
   y = this->MajorStart;
   numTicks = 0;
-  while (y < p2[1] && numTicks < VTK_MAX_TICKS)
+  while (y <= p2[1] && numTicks < VTK_MAX_TICKS)
     {
     yPoint1[1] = xPoint[1] = yPoint2[1] = zPoint[1] = y;
     // yx portion
@@ -1265,7 +1265,7 @@
 
   z = this->MajorStart;
   numTicks = 0;
-  while (z < p2[2] && numTicks < VTK_MAX_TICKS)
+  while (z <= p2[2] && numTicks < VTK_MAX_TICKS)
     {
     zPoint1[2] = zPoint2[2] = xPoint[2] = yPoint[2] = z;
     // zx-portion
@@ -1307,7 +1307,7 @@
     }
   z = this->MajorStart;
   numTicks = 0;
-  while (z < p2[2] && numTicks < VTK_MAX_TICKS)
+  while (z <= p2[2] && numTicks < VTK_MAX_TICKS)
     {
     zPoint1[2] = zPoint2[2] = xPoint[2] = yPoint[2] = z;
     // zx-portion
