-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSourceQuad.lua
More file actions
44 lines (36 loc) · 987 Bytes
/
Copy pathSourceQuad.lua
File metadata and controls
44 lines (36 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---@class SourceQuad: DestinationQuad
local SourceQuad_Local = {}
_G.SourceQuad = {}
---Constructs a new destination quad object.
---@param topLeft Vector
---@param topRight Vector
---@param bottomLeft Vector
---@param bottomRight Vector
---@param uv boolean?
---@return SourceQuad
function _G.SourceQuad(topLeft, topRight, bottomLeft, bottomRight, uv)
end
---@param topLeft Vector
---@param bottomRight Vector
---@param uv boolean?
---@return SourceQuad
function _G.SourceQuad.NewFromBounds(topLeft, bottomRight, uv)
end
---@param topLeft Vector
---@param width number
---@param height number
---@param uv boolean?
---@return SourceQuad
function _G.SourceQuad.NewFromRectangle(topLeft, width, height, uv)
end
---Specialized version of Copy for `SourceQuad`.
---@return SourceQuad
function SourceQuad_Local:Copy()
end
---@return boolean
function SourceQuad_Local:IsUVSpace()
end
function SourceQuad_Local:ConvertToPixelSpace()
end
function SourceQuad_Local:ConvertToUVSpace()
end