mirror of https://gitea.it/1414codeforge/gear
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
600 B
Lua
23 lines
600 B
Lua
--- LÖVE Utility Gear
|
|
--
|
|
-- General purpose functions and utilities.
|
|
-- Provides various basic functionality, including: general utility
|
|
-- algorithms, linear algebra and simple bounds checking functions.
|
|
-- Code is reasonably optimized for speed.
|
|
--
|
|
-- @module gear
|
|
-- @copyright 2022 The DoubleFourteen Code Forge
|
|
-- @author Lorenzo Cogotti
|
|
|
|
local BASE = (...)..'.'
|
|
|
|
|
|
return {
|
|
algo = require(BASE..'algo'),
|
|
meta = require(BASE..'meta'),
|
|
rect = require(BASE..'rect'),
|
|
shadowtext = require(BASE..'shadowtext')
|
|
strings = require(BASE..'strings'),
|
|
vec = require(BASE..'vec')
|
|
}
|