GetAABB
This function gets the axis-aligned bounding box (AABB) that encompasses all a surface's vertices.
Syntax
Returns
Returns the surface AABB.
Example
--Create a window
window = Window:Create()
context = Context:Create(window)
world = World:Create()
local camera = Camera:Create()
camera:SetRotation(35,0,0)
camera:Move(0,0,-3)
local light = DirectionalLight:Create()
light:SetRotation(35,35,0)
local model = Model:Box()
model:SetColor(1.0,0.0,0.0)
local surface = model:GetSurface(0)
--Print out the surface AABB
System:Print(surface:GetAABB())
while true do
if window:Closed() or window:KeyHit(Key.Escape) then return false end
Time:Update()
world:Update()
world:Render()
context:Sync()
end