192// AddToObject() modifies composite OBJECT to add new OBJECTs according to placement/orientation in corresponding TRACK array.
193// Inputs : composite = pointer to pre-allocated OBJECT to be added to.
194// nobjects = number of OBJECTs in object array to be added. Should also equal number of TRACKs in track array.
195// object = array of OBJECTs to be added to composite OBJECT.
196// track = array of TRACKs on a one-to-one correspondence with the object array. Each TRACK gives the position and orientation of the corresponding OBJECT to be added, as measured in the composite OBJECT's body FRD system.
197// Returns: The number of polygons in the final composite OBJECT's ms_poly_array, after all OBJECTs have been added. int i;
232// SetMinMaxObjectRadiances() can be used to set the OBJECT structure minimum and maximum radiances and passbands for use with the UseRadImage switch,
233// but note that all passbands will be the SAME, all maximum radiances will be the SAME, and all minimum radiances will be the SAME, for all faces of the object cube.
234// For specification of different parameters for each face, the user is expected to either use GetScenario, or use a call to rademit_approx as follows:
235// Given a passband ax and bx [in microns], and a face temperature T [in degK], the associated radiance is given by:
236// double itd;
237// rad = rademit_approx(ax, bx, T, 10, &itd);
238// This should be done for Tmin and Tmax, for each face.
239//
240// Inputs: object = pointer to OBJECT whose passband and radiances are to be calculated.
241// bmpax = wavelength [um] of start of passband associated with the image.
242// bmpbx = wavelength [um] of end of passband associated with the image.
243// bmptlo = temperature [degC] of start of image dynamic range.
244// bmpthi = temperature [degC] of end of image dynamic range.