]> gitweb.factorcode.org Git - factor.git/blob - extra/colors/yuv/yuv-tests.factor
eba32266b2682103dcd5c2164a04b64c11156e66
[factor.git] / extra / colors / yuv / yuv-tests.factor
1 ! Copyright (C) 2013 John Benediktsson
2 ! See http://factorcode.org/license.txt for BSD license
3
4 USING: arrays colors kernel locals math.functions math.ranges
5 sequences tools.test ;
6
7 IN: colors.yuv
8
9 { t } [
10     0.0 1.0 0.1 <range> [| r |
11         0.0 1.0 0.1 <range> [| g |
12             0.0 1.0 0.1 <range> [| b |
13                 r g b 1.0 <rgba> dup >yuva >rgba
14                 [ >rgba-components 4array ] bi@
15                 [ 0.00000001 ~ ] 2all?
16             ] all?
17         ] all?
18     ] all?
19 ] unit-test