diff Framework/Layers/LineLayerRenderer.h @ 394:17d54c028805

rename ILayerRenderer::GetLayerSlice() to GetLayerPlane()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 10 Nov 2018 08:44:18 +0100
parents fccffbf99ba1
children b70e9be013e4
line wrap: on
line diff
--- a/Framework/Layers/LineLayerRenderer.h	Fri Nov 09 18:30:30 2018 +0100
+++ b/Framework/Layers/LineLayerRenderer.h	Sat Nov 10 08:44:18 2018 +0100
@@ -32,7 +32,7 @@
     double              y1_;
     double              x2_;
     double              y2_;
-    CoordinateSystem3D  slice_;
+    CoordinateSystem3D  plane_;
     bool                visible_;
     uint8_t             color_[3];
 
@@ -41,16 +41,16 @@
                       double y1,
                       double x2,
                       double y2,
-                      const CoordinateSystem3D& slice);
+                      const CoordinateSystem3D& plane);
 
     virtual bool RenderLayer(CairoContext& context,
                              const ViewportGeometry& view);
 
     virtual void SetLayerStyle(const RenderStyle& style);
 
-    virtual const CoordinateSystem3D& GetLayerSlice()
+    virtual const CoordinateSystem3D& GetLayerPlane()
     {
-      return slice_;
+      return plane_;
     }
     
     virtual bool IsFullQuality()