Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ActionScript 3で、値を0から255の間にクリップするより短い方法はありますか?
value = Math.min(255, Math.max(0, value))
いいえ、独自のショートカット関数を簡単に作成できます:
function clip(val:Number, min:Number, max:Number):Number { return Math.min(max, Math.max(min, val)); }
高速なものを探している場合は、次のようにします。
k = (k | -int(k > 256)) & -int(k > 0) & 0xFF;