A multiple-value field that contains any number of 4x4 matrices.
SoMFMatrices are written to file as sets of 16 floating point numbers separated by whitespace. When more than one value is present, all of the values
are enclosed in square brackets and separated by commas; for example, two identity matrices might be written as:
Returns a pointer into the array of values in the field, starting at index start. The values are read-only; see the startEditing()/finishEditing() methods for a way of modifying values in place.
int find(const SbMatrix & targetValue, SbBool addIfNotFound = FALSE)
Finds the given value in the array and returns the index of that value in the array. If the value is not found, -1 is returned. If addIfNotFound is set, then targetValue is added to the end of the array (but -1 is still returned).
void setValues(int start, int num, const SbMatrix *newValues)
Sets num values starting at index start to the values in newValues. The array will be automatically be made larger to accomodate the new values, if necessary.
Sets the first value in the array to newValue, and deletes the second and subsequent values.
int operator ==(const SoMFMatrix &f) const
int operator !=(const SoMFMatrix &f) const
Returns TRUE if all of the values of this field equal (do not equal) those of the given field. If the fields are different types FALSE will always be returned (even if one field is an SoMFFloat with one value of
1.0 and the other is an SoMFInt with a value of 1, for example).
startEditing() returns a pointer to the internally-maintained array that can be modified. The values in the array may be changed, but values cannot be added or removed. It is illegal to call any other editing methods
between startEditing() and finishEditing() (e.g. set1Value(), setValue(), etc).
Fields, engines or sensors connected to this field and sensors are not notified that this field has changed until finishEditing() is called. Calling finishEditing() always sets the isDefault() flag to FALSE and informs engines and
sensors that the field changed, even if none of the values actually were changed.
Typeset by Felix Ritter (MeVis Research GmbH)
Hyperlinks by Wolfram Esser (method park Software AG)