矩形数据类型,包含四个属性:
注意:构造之后只读
local rect = Rect.New(0,1,2,3) print("Left:"..tostring(rect.Left).." Right:"..tostring(rect.Right).." Top:"..tostring(rect.Top).." Bottom:"..tostring(rect.Bottom)) --Left:0 Right:2 Top:1 Bottom:3
Ray SBXConnection