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.
为什么使用方法(对于矩形)使用Math.min()xy 坐标和宽度和高度是个好主意?Math.abs()我认为 xy 坐标总是正数,所以我很困惑为什么它很重要。
Math.min()
Math.abs()
x,y 坐标表示矩形在平面上的位置;它们可以是负数,因为矩形可以放置在相对于原点的任何位置(即 0,0 位置)。
矩形的高度和宽度必须为正,因为实际上没有定义负长度。
Math.min考虑到这一点,使用位置和Math.abs维度是有意义的。
Math.min
Math.abs