Class: Abachrome::Gamut::Rec2020

Inherits:
Base
  • Object
show all
Defined in:
lib/abachrome/gamut/rec2020.rb

Instance Attribute Summary

Attributes inherited from Base

#name, #primaries, #white_point

Instance Method Summary collapse

Methods inherited from Base

#contains?, #map

Constructor Details

#initializeRec2020

Returns a new instance of Rec2020.



11
12
13
14
15
16
17
18
# File 'lib/abachrome/gamut/rec2020.rb', line 11

def initialize
  primaries = {
    red: [0.708, 0.292],
    green: [0.170, 0.797],
    blue: [0.131, 0.046]
  }
  super(:rec2020, primaries, :D65)
end