Ejemplo n.º 1
0
 public AfterCachePlotOperationFactory(IViewportRenderContext sharedRenderConfig, IRenderPlotOperation <TRenderTile, TContext> plotOperation)
 {
     this.sharedRenderConfig = sharedRenderConfig ?? throw new ArgumentNullException(nameof(sharedRenderConfig));
     this.plotOperation      = plotOperation;
 }
Ejemplo n.º 2
0
 public static PlotOperationFactory FromContext(IViewportRenderContext sharedRenderConfig)
 {
     return(new PlotOperationFactory(sharedRenderConfig));
 }