FACT++  1.0
void Q3DCameraWidget::setData ( float *  data)

Definition at line 167 of file Q3DCameraWidget.cc.

References _warningWritten.

168  {
169  if (!_warningWritten)
170  {
171  _warningWritten = true;
172  cout << "Info : 3D plotter disabled. requires more work so that less than 300 slices per pixel can be loaded" << endl;
173  cout << "Contact Etienne (etienne.lyard@unige.ch) for more information." << endl;
174  }
175  //disabled for now as I am working with 150 slices only
176 /* for (int i=0;i<1440;i++)
177  for (int j=0;j<300;j++)
178  _data[i*300+j] = (short)(ddata[i*300 + j]);
179  calculateColorsAndPositions();
180  if (isVisible())
181  updateGL();
182 */
183  }