@@ -24,7 +24,7 @@ public static class KnownChromaticAdaptationMatrices
24
24
/// von Kries chromatic adaptation transform matrix (Hunt-Pointer-Estevez adjusted for D65)
25
25
/// </summary>
26
26
public static readonly Matrix4x4 VonKriesHPEAdjusted
27
- = Matrix4x4 . Transpose ( new Matrix4x4
27
+ = Matrix4x4 . Transpose ( new ( )
28
28
{
29
29
M11 = 0.40024F ,
30
30
M12 = 0.7076F ,
@@ -42,7 +42,7 @@ public static readonly Matrix4x4 VonKriesHPEAdjusted
42
42
/// von Kries chromatic adaptation transform matrix (Hunt-Pointer-Estevez for equal energy)
43
43
/// </summary>
44
44
public static readonly Matrix4x4 VonKriesHPE
45
- = Matrix4x4 . Transpose ( new Matrix4x4
45
+ = Matrix4x4 . Transpose ( new ( )
46
46
{
47
47
M11 = 0.3897F ,
48
48
M12 = 0.6890F ,
@@ -65,7 +65,7 @@ public static readonly Matrix4x4 VonKriesHPE
65
65
/// Bradford chromatic adaptation transform matrix (used in CMCCAT97)
66
66
/// </summary>
67
67
public static readonly Matrix4x4 Bradford
68
- = Matrix4x4 . Transpose ( new Matrix4x4
68
+ = Matrix4x4 . Transpose ( new ( )
69
69
{
70
70
M11 = 0.8951F ,
71
71
M12 = 0.2664F ,
@@ -83,7 +83,7 @@ public static readonly Matrix4x4 Bradford
83
83
/// Spectral sharpening and the Bradford transform
84
84
/// </summary>
85
85
public static readonly Matrix4x4 BradfordSharp
86
- = Matrix4x4 . Transpose ( new Matrix4x4
86
+ = Matrix4x4 . Transpose ( new ( )
87
87
{
88
88
M11 = 1.2694F ,
89
89
M12 = - 0.0988F ,
@@ -101,7 +101,7 @@ public static readonly Matrix4x4 BradfordSharp
101
101
/// CMCCAT2000 (fitted from all available color data sets)
102
102
/// </summary>
103
103
public static readonly Matrix4x4 CMCCAT2000
104
- = Matrix4x4 . Transpose ( new Matrix4x4
104
+ = Matrix4x4 . Transpose ( new ( )
105
105
{
106
106
M11 = 0.7982F ,
107
107
M12 = 0.3389F ,
@@ -119,7 +119,7 @@ public static readonly Matrix4x4 CMCCAT2000
119
119
/// CAT02 (optimized for minimizing CIELAB differences)
120
120
/// </summary>
121
121
public static readonly Matrix4x4 CAT02
122
- = Matrix4x4 . Transpose ( new Matrix4x4
122
+ = Matrix4x4 . Transpose ( new ( )
123
123
{
124
124
M11 = 0.7328F ,
125
125
M12 = 0.4296F ,
0 commit comments