comparison src/graphics.cc @ 6565:3e2cfed6c87e before-object-branch

[project @ 2007-04-23 20:31:52 by jwe]
author jwe
date Mon, 23 Apr 2007 20:31:52 +0000
parents efa1716abd4c
children 9520d1004a73
comparison
equal deleted inserted replaced
6564:efa1716abd4c 6565:3e2cfed6c87e
114 } 114 }
115 } 115 }
116 116
117 operator octave_value (void) const 117 operator octave_value (void) const
118 { 118 {
119 Matrix retval (1, 4); 119 Matrix retval (1, 3);
120 120
121 for (int i = 0; i < 4 ; i++) 121 for (int i = 0; i < 3 ; i++)
122 retval(i) = xrgba[i]; 122 retval(i) = xrgba[i];
123 123
124 return retval; 124 return retval;
125 } 125 }
126 126