示例#1
0
        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));
        }
示例#2
0
 protected ILayerAccessor GetLayerAccessorX(AnomalyCurrent ac, int k)
 => VerticalLayerAccessor.NewX(ac, k);