public static void PrintAll(AnomalyCurrent ac, int k) { ac.LayoutOrder = MemoryLayoutOrder.AlongVertical; Console.WriteLine("X"); Print(ac, VerticalLayerAccessor.NewX(ac, k)); Console.WriteLine("Y"); Print(ac, VerticalLayerAccessor.NewY(ac, k)); Console.WriteLine("Z"); Print(ac, VerticalLayerAccessor.NewZ(ac, k)); }
protected ILayerAccessor GetLayerAccessorX(AnomalyCurrent ac, int k) => VerticalLayerAccessor.NewX(ac, k);