在AS3中,Bitmap.smoothing使用什么算法作为默认算法?
双线性,三线性,双三次或其他?
答案 0 :(得分:0)
它使用Bilinear ......
见“光滑”属性......
答案 1 :(得分:0)
双线性自动mipmap。例如。 100将使用2个mipmap级别(100/2 = 50,50 / 2 = 25),90将使用一个mipmap级别(90/2 = 45)。
更多信息:http://www.kaourantin.net/2007/06/mip-map-what.html
Demo使它或多或少明显是双线性的:http://www.kaourantin.net/2007/06/mip-map-what.html