/* SFImage.C */ #include "vrml.H" void SFImage::construct(int w, int h, int n, unsigned int *pix) { width = w; height = h; num_components = n; int num_pixels = width * height; if (num_pixels > 0) { pixels = new unsigned int[num_pixels]; if (pix) for (int i=0; i