diff Framework/Layers/FrameRenderer.h @ 110:53025eecbc95 wasm

renamed SliceGeometry as CoordinateSystem3D
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Jun 2017 15:50:38 +0200
parents d18dcc963930
children e2fe9352f240
line wrap: on
line diff
--- a/Framework/Layers/FrameRenderer.h	Wed Jun 14 15:34:08 2017 +0200
+++ b/Framework/Layers/FrameRenderer.h	Wed Jun 14 15:50:38 2017 +0200
@@ -30,7 +30,7 @@
   class FrameRenderer : public ILayerRenderer
   {
   private:
-    SliceGeometry                 frameSlice_;
+    CoordinateSystem3D            frameSlice_;
     double                        pixelSpacingX_;
     double                        pixelSpacingY_;
     RenderStyle                   style_;
@@ -41,7 +41,7 @@
     virtual CairoSurface* GenerateDisplay(const RenderStyle& style) = 0;
 
   public:
-    FrameRenderer(const SliceGeometry& frameSlice,
+    FrameRenderer(const CoordinateSystem3D& frameSlice,
                   double pixelSpacingX,
                   double pixelSpacingY,
                   bool isFullQuality);
@@ -49,7 +49,7 @@
     virtual bool RenderLayer(CairoContext& context,
                              const ViewportGeometry& view);
 
-    virtual const SliceGeometry& GetLayerSlice()
+    virtual const CoordinateSystem3D& GetLayerSlice()
     {
       return frameSlice_;
     }