mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
26 lines
490 B
Lua
26 lines
490 B
Lua
-- Copyright (C) 2018 David Capello
|
|
--
|
|
-- This file is released under the terms of the MIT license.
|
|
-- Read LICENSE.txt for more information.
|
|
|
|
local sz = Size()
|
|
assert(sz.width == 0)
|
|
assert(sz.height == 0)
|
|
|
|
sz = Size(3, 4)
|
|
assert(sz.width == 3)
|
|
assert(sz.height == 4)
|
|
|
|
local sz2 = Size(sz)
|
|
assert(sz2.width == 3)
|
|
assert(sz2.height == 4)
|
|
|
|
sz.width = 7
|
|
sz.height = 8
|
|
assert(sz.width == 7)
|
|
assert(sz.height == 8)
|
|
|
|
sz = Size{width=10, height=20}
|
|
assert(sz.width == 10)
|
|
assert(sz.height == 20)
|