Module:Color/utils/init: Revision history

From Space Station 14 Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

24 May 2025

  • curprev 07:5607:56, 24 May 2025 Aliser talk contribs 720 bytes +720 Created page with "local function min_index(first, ...) local min, index = first, 1 for i, v in ipairs {...} do if v < min then min, index = v, i + 1 end end return min, index end local function max_index(first, ...) local max, index = first, 1 for i, v in ipairs {...} do if v > max then max, index = v, i + 1 end end return max, index end local function round(x) return x + 0.5 - (x + 0.5) % 1 end local function clamp(x, min, max) return x..."