From 68b5e3e3fe8c4bf314d31d18c147650db99b4f7d Mon Sep 17 00:00:00 2001 From: Miran Date: Tue, 21 May 2019 21:28:30 +0200 Subject: colors: fix `mix`, add documentation (#11295) --- lib/pure/colors.nim | 124 +++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 104 insertions(+), 20 deletions(-) diff --git a/lib/pure/colors.nim b/lib/pure/colors.nim index b58166b05..159bc8023 100644 --- a/lib/pure/colors.nim +++ b/lib/pure/colors.nim @@ -13,10 +13,18 @@ import strutils from algorithm import binarySearch type - Color* = distinct int ## a color stored as RGB + Color* = distinct int ## A color stored as RGB, e.g. `0xff00cc`. proc `==` *(a, b: Color): bool {.borrow.} - ## compares two colors. + ## Compares two colors. + ## + ## .. code-block:: + ## var + ## a = Color(0xff_00_ff) + ## b = colFuchsia + ## c = Color(0x00_ff_cc) + ## assert a == b + ## assert not a == c template extract(a: Color, r, g, b: untyped) = var r = a.int shr 16 and 0xff @@ -40,24 +48,58 @@ proc satMinus(a, b: int): int {.inline.} = if result < 0: result = 0 proc `+`*(a, b: Color): Color = - ## adds two colors: This uses saturated artithmetic, so that each color + ## Adds two colors. + ## + ## This uses saturated artithmetic, so that each color ## component cannot overflow (255 is used as a maximum). + ## + ## .. code-block:: + ## var + ## a = Color(0xaa_00_ff) + ## b = Color(0x11_cc_cc) + ## assert a + b == Color(0xbb_cc_ff) + ## colorOp(satPlus) proc `-`*(a, b: Color): Color = - ## subtracts two colors: This uses saturated artithmetic, so that each color - ## component cannot overflow (255 is used as a maximum). + ## Subtracts two colors. + ## + ## This uses saturated artithmetic, so that each color + ## component cannot underflow (0 is used as a minimum). + ## + ## .. code-block:: + ## var + ## a = Color(0xff_33_ff) + ## b = Color(0x11_ff_cc) + ## assert a - b == Color(0xee_00_33) + ## colorOp(satMinus) proc extractRGB*(a: Color): tuple[r, g, b: range[0..255]] = - ## extracts the red/green/blue components of the color `a`. + ## Extracts the red/green/blue components of the color `a`. + ## + ## .. code-block:: + ## var + ## a = Color(0xff_00_ff) + ## b = Color(0x00_ff_cc) + ## echo extractRGB(a) # => (r: 255, g: 0, b: 255) + ## echo extractRGB(b) # => (r: 0, g: 255, b: 204) + ## result.r = a.int shr 16 and 0xff result.g = a.int shr 8 and 0xff result.b = a.int and 0xff proc intensity*(a: Color, f: float): Color = - ## returns `a` with intensity `f`. `f` should be a float from 0.0 (completely + ## Returns `a` with intensity `f`. `f` should be a float from 0.0 (completely ## dark) to 1.0 (full color intensity). + ## + ## .. code-block:: + ## var + ## a = Color(0xff_00_ff) + ## b = Color(0x00_42_cc) + ## assert a.intensity(0.5) == Color(0x80_00_80) + ## assert b.intensity(0.5) == Color(0x00_21_66) + ## var r = toInt(toFloat(a.int shr 16 and 0xff) * f) var g = toInt(toFloat(a.int shr 8 and 0xff) * f) var b = toInt(toFloat(a.int and 0xff) * f) @@ -67,10 +109,22 @@ proc intensity*(a: Color, f: float): Color = result = rawRGB(r, g, b) template mix*(a, b: Color, fn: untyped): untyped = - ## uses `fn` to mix the colors `a` and `b`. `fn` is invoked for each component - ## R, G, and B. This is a template because `fn` should be inlined and the - ## compiler cannot inline proc pointers yet. If `fn`'s result is not in the - ## range[0..255], it will be saturated to be so. + ## Uses `fn` to mix the colors `a` and `b`. + ## + ## `fn` is invoked for each component R, G, and B. + ## If `fn`'s result is not in the `range[0..255]`, + ## it will be saturated to be so. + ## + ## .. code-block:: + ## var + ## a = Color(0x0a2814) + ## b = Color(0x050a03) + ## + ## proc myMix(x, y: int): int = + ## 2 * x - 3 * y + ## + ## assert mix(a, b, myMix) == Color(0x05_32_1f) + ## template `><` (x: untyped): untyped = # keep it in the range 0..255 block: @@ -79,9 +133,10 @@ template mix*(a, b: Color, fn: untyped): untyped = y = if y < 0: 0 else: 255 y - (bind extract)(a, ar, ag, ab) - (bind extract)(b, br, bg, bb) - (bind rawRGB)(>= 0 proc rgb*(r, g, b: range[0..255]): Color = - ## constructs a color from RGB values. + ## Constructs a color from RGB values. + ## + ## .. code-block:: + ## assert rgb(0, 255, 128) == Color(0x00_ff_80) + ## result = rawRGB(r, g, b) - -- cgit 1.4.1-2-gfad0