public static Task <Texture2D[, , ]> Fetch(string[, , ] laTeX) { LaTeXTextureDownloader downloader = new LaTeXTextureDownloader(laTeX, null); return(downloader.GetTextures()); }
public static Task <Texture2D[, , ]> Fetch(string[, , ] laTeX, TextureSettings?settings) { LaTeXTextureDownloader downloader = new LaTeXTextureDownloader(laTeX, settings); return(downloader.GetTextures()); }
public async Task FetchFormulaTextures() { FormulaTextures = await LaTeXTextureDownloader.Fetch(FormulaTensor); }
private async Task FetchTexture() { texture = await LaTeXTextureDownloader.FetchOneTexture(laTeX); }
public async Task FetchIndexTextures() { IndexTextures = await LaTeXTextureDownloader.Fetch(IndexTensor, new TextureSettings { size = Size.normal }); }