Sha256: b214af084fe11c2ea9435f8a34d65594c5050438039be0f56a35849396d4d74d
Contents?: true
Size: 422 Bytes
Versions: 15
Compression:
Stored size: 422 Bytes
Contents
# frozen_string_literal: true module GDAL module ColorTableTypes module CMYK def cyans color_entries_for(1) end def magentas color_entries_for(2) end def yellows color_entries_for(3) end def blacks color_entries_for(4) end def to_a NMatrix[cyans, magentas, yellows, blacks].transpose.to_a end end end end
Version data entries
15 entries across 15 versions & 1 rubygems