GetY() 공개 메소드

public GetY ( int offset, int w, int multi ) : int
offset int
w int
multi int
리턴 int
예제 #1
0
파일: UnitTest1.cs 프로젝트: afonsof/nes-hd
        private Xy GetXy(int offset, int desl, int multi = 1)
        {
            offset -= 0x8010;
            var ppu = new Ppu(TvFormat.Ntsc, new PaletteFormat(), null);

            var w = 128*multi;

            return new Xy
                       {
                           X = ppu.GetX(offset, desl, multi),
                           Y = ppu.GetY(offset, w, multi)
                       };
        }