public Image3D(InlineFile f, bool color0, int width, int height, int format, long offset2) { this.f = f; this.color0Transp = color0; this.color0 = color0; this.width = width; this.height = height; this.format = format; offset = offset2; f.beginEdit(this); data = f.getContents(); }
public Image3Dformat5(InlineFile f, InlineFile f5, int width, int height) { this.f = f; this.f5 = f5; f.beginEdit(this); f5.beginEdit(this); this.width = width; this.height = height; offset = f.fileBegin; offset5 = f5.fileBegin; fdata = f.getContents(); f5data = f5.getContents(); format = 5; }