SoMFRotation(3IV) - Online Linux Manual Page
NAMESoMFRotation — Multiple-value field containing any number of SbRotations.

INHERITS FROMSoField > SoMField > SoMFRotation

SYNOPSIS¶\f7#include <Inventor/fields/SoMFRotation.h> Methods from class SoMFRotation: \f8set1Value\*(Cr(int index, const SbVec3f &axis, float angle)
\f8setValue\*(Cr(const SbVec3f &axis, float angle)
\f8set1Value\*(Cr(int index, float q0, float q1, float q2, float q3)
\f8set1Value\*(Cr(int index, const float q[4])
\f8setValue\*(Cr(float q0, float q1, float q2, float q3)
\f8setValue\*(Cr(float q[4])
\f8getClassTypeId\*(Cr()
\f8getTypeId\*(Cr() const
\f8operator [\|]\*(Cr(int i) const
\f8getValues\*(Cr(int start) const
\f8find\*(Cr(const SbRotation & targetValue, SbBool addIfNotFound = FALSE)
\f8setValues\*(Cr(int start, int num, const SbRotation *newValues)
\f8set1Value\*(Cr(int index, const SbRotation & newValue)
\f8operator =\*(Cr(const SbRotation & newValue)
\f8setValue\*(Cr(const SbRotation & newValue)
\f8operator ==\*(Cr(const SoMFRotation &f) const
\f8operator !=\*(Cr(const SoMFRotation &f) const
\f8startEditing\*(Cr()
\f8finishEditing\*(Cr() Methods from class SoMField: \f8getNum\*(Cr() const
\f8setNum\*(Cr(int num)
\f8deleteValues\*(Cr(int start, int num = -1)
\f8insertSpace\*(Cr(int start, int num)
\f8set1\*(Cr(int index, const char *valueString)
\f8get1\*(Cr(int index, SbString &valueString) Methods from class SoField: \f8setIgnored\*(Cr(SbBool ignore)
\f8isIgnored\*(Cr() const
\f8isDefault\*(Cr() const
\f8isOfType\*(Cr(SoType type) const
\f8set\*(Cr(const char *valueString)
\f8get\*(Cr(SbString &valueString)
\f8touch\*(Cr()
\f8connectFrom\*(Cr(SoField *fromField)
\f8connectFrom\*(Cr(SoEngineOutput *fromEngine)
\f8disconnect\*(Cr()
\f8isConnected\*(Cr() const
\f8isConnectedFromField\*(Cr() const
\f8getConnectedField\*(Cr(SoField *&writingField) const
\f8isConnectedFromEngine\*(Cr() const
\f8getConnectedEngine\*(Cr(SoEngineOutput *&engineOutput) const
\f8enableConnection\*(Cr(SbBool flag)
\f8isConnectionEnabled\*(Cr() const
\f8getForwardConnections\*(Cr(SoFieldList &list) const
\f8getContainer\*(Cr() const

DESCRIPTIONmultiple-value field that contains any number of SbRotations. \f8SoMFRotations\f1 are written to file as one or more sets of four floating point values. Each set of 4 values is an axis of rotation followed by the amount ​of right-handed rotation about that axis, in radians. When more than one value is present, all of the values are enclosed in square brackets and separated by commas; for example: [ 1 0 0 0, -.707 -.707 0 1.57 ]

METHODS\f8set1Value\*(Cr(int index, const SbVec3f &axis, float angle)
Sets the \f7index\f1'th value to the given axis/angle. \f8setValue\*(Cr(const SbVec3f &axis, float angle)
Makes this field have exactly one value, given by \f7axis\f1 and \*(Crangle\f1. \f8set1Value\*(Cr(int index, float q0, float q1, float q2, float q3)
\f8set1Value\*(Cr(int index, const float q[4])
Sets the \f7index\f1'th value to the given quaternion. \f8setValue\*(Cr(float q0, float q1, float q2, float q3)
\f8setValue\*(Cr(float q[4])
Makes this field have exactly one value, given by the quaternion. \f8getClassTypeId\*(Cr()
\f8getTypeId\*(Cr() const
Returns the type for this class or a particular object of this class. \f8operator [\|]\*(Cr(int i) const
Returns the \f7i\f1'th value of the field. Indexing past the end of the field (passing in \*(Cri\f1 greater than \*(CbgetNum()\f1) will return garbage. \f8getValues\*(Cr(int start) const
Returns a pointer into the array of values in the field, starting at index \f7start\f1. The values are read-only; see the \*(CbstartEditing()\f1/\*(CbfinishEditing()\f1 methods for a way of modifying values in place. \f8find\*(Cr(const SbRotation & 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 \f7addIfNotFound\f1 is set, then \*(CrtargetValue\f1 is added to the end of the array (but -1 is still returned). \f8setValues\*(Cr(int start, int num, const SbRotation *newValues)
Sets \f7num\f1 values starting at index \*(Crstart\f1 to the values in \*(CrnewValues\f1. The array will be automatically be made larger to accomodate the new values, if necessary. \f8set1Value\*(Cr(int index, const SbRotation & newValue)
Sets the \f7index\f1'th value in the array to \*(CrnewValue\f1. The array will be automatically expanded, if necessary. \f8operator =\*(Cr(const SbRotation & newValue)
\f8setValue\*(Cr(const SbRotation & newValue)
Sets the first value in the array to \f7newValue\f1, and deletes the second and subsequent values. \f8operator ==\*(Cr(const SoMFRotation &f) const
\f8operator !=\*(Cr(const SoMFRotation &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 \f8SoMFFloat\f1 with one value of ​1.0 and the other is an \f8SoMFInt\f1 with a value of 1, for example). \f8startEditing\*(Cr()
\f8finishEditing\*(Cr()
\f8startEditing()\f1 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 \f8startEditing()\f1 and \*(CbfinishEditing()\f1 (e.g. \*(Cbset1Value()\f1, \*(CbsetValue()\f1, etc). Fields, engines or sensors connected to this field and sensors are not notified that this field has changed until \f8finishEditing()\f1 is called. Calling \*(CbfinishEditing()\f1 always sets the \*(CbisDefault()\f1 flag to FALSE and informs engines and ​sensors that the field changed, even if none of the values actually were changed.

SEE ALSO\f8SbRotation
0
Johanes Gumabo
Data Size   :   26,540 byte
man-SoMFRotation.3ivBuild   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   2 / 200,003
Visitor ID   :     :  
Visitor IP   :   3.133.155.253   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.

ERROR : Need New Coding :         (rof_escape_sequence|91|SoMFRotation.3iv|7/8|\f7 |. ds Cr \f7 )         (rof_escape_sequence|91|SoMFRotation.3iv|9|\f8 |. ds Cb \f8 )         (rof_escape_sequence|91|SoMFRotation.3iv|18|\f7#include |¶\*(Cr#include )         (rof_escape_sequence|91|SoMFRotation.3iv|28|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|35/36|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|35/36|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|37/38|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|37/38|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|39|\f8set1Value\*(Cr(int index, const SbVec3f &axis, float angle) |\*(Cbset1Value\*(Cr(int index, const SbVec3f &axis, float angle) )         (rof_escape_sequence|91|SoMFRotation.3iv|44|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|51/52|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|51/52|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|53/54|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|53/54|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|55|\f8setValue\*(Cr(const SbVec3f &axis, float angle) |\*(CbsetValue\*(Cr(const SbVec3f &axis, float angle) )         (rof_escape_sequence|91|SoMFRotation.3iv|60|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|67/68|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|67/68|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|69/70|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|69/70|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|71|\f8set1Value\*(Cr(int index, float q0, float q1, float q2, float q3) |\*(Cbset1Value\*(Cr(int index, float q0, float q1, float q2, float q3) )         (rof_escape_sequence|91|SoMFRotation.3iv|76|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|83/84|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|83/84|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|85/86|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|85/86|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|87|\f8set1Value\*(Cr(int index, const float q[4]) |\*(Cbset1Value\*(Cr(int index, const float q[4]) )         (rof_escape_sequence|91|SoMFRotation.3iv|92|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|99/100|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|99/100|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|101/102|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|101/102|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|103|\f8setValue\*(Cr(float q0, float q1, float q2, float q3) |\*(CbsetValue\*(Cr(float q0, float q1, float q2, float q3) )         (rof_escape_sequence|91|SoMFRotation.3iv|108|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|115/116|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|115/116|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|117/118|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|117/118|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|119|\f8setValue\*(Cr(float q[4]) |\*(CbsetValue\*(Cr(float q[4]) )         (rof_escape_sequence|91|SoMFRotation.3iv|124|\f7static SoType |.ds Pt \*(Crstatic SoType )         (parse_manual_page_|249|SoMFRotation.3iv|131/132|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|131/132|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|133/134|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|133/134|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|135|\f8getClassTypeId\*(Cr() |\*(CbgetClassTypeId\*(Cr() )         (rof_escape_sequence|91|SoMFRotation.3iv|140|\f7virtual void |.ds Pt \*(Crvirtual void )         (parse_manual_page_|249|SoMFRotation.3iv|147/148|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|147/148|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|149/150|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|149/150|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|151|\f8getTypeId\*(Cr() const |\*(CbgetTypeId\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|156|\f7const SbRotation & |.ds Pt \*(Crconst SbRotation & )         (parse_manual_page_|249|SoMFRotation.3iv|163/164|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|163/164|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|165/166|\f7const SbRotation & \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|165/166|\f7const SbRotation & \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|167|\f8operator [\|]\*(Cr(int i) const |\*(Cboperator [\|]\*(Cr(int i) const )         (rof_escape_sequence|91|SoMFRotation.3iv|172|\f7const SbRotation * |.ds Pt \*(Crconst SbRotation * )         (parse_manual_page_|249|SoMFRotation.3iv|179/180|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|179/180|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|181/182|\f7const SbRotation * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|181/182|\f7const SbRotation * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|183|\f8getValues\*(Cr(int start) const |\*(CbgetValues\*(Cr(int start) const )         (rof_escape_sequence|91|SoMFRotation.3iv|188|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoMFRotation.3iv|195/196|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|195/196|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|197/198|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|197/198|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|199|\f8find\*(Cr(const SbRotation & targetValue, SbBool addIfNotFound = FALSE) |\*(Cbfind\*(Cr(const SbRotation & targetValue, SbBool addIfNotFound = FALSE) )         (rof_escape_sequence|91|SoMFRotation.3iv|204|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|211/212|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|211/212|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|213/214|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|213/214|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|215|\f8setValues\*(Cr(int start, int num, const SbRotation *newValues) |\*(CbsetValues\*(Cr(int start, int num, const SbRotation *newValues) )         (rof_escape_sequence|91|SoMFRotation.3iv|220|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|227/228|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|227/228|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|229/230|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|229/230|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|231|\f8set1Value\*(Cr(int index, const SbRotation & newValue) |\*(Cbset1Value\*(Cr(int index, const SbRotation & newValue) )         (rof_escape_sequence|91|SoMFRotation.3iv|236|\f7const SbRotation & |.ds Pt \*(Crconst SbRotation & )         (parse_manual_page_|249|SoMFRotation.3iv|243/244|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|243/244|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|245/246|\f7const SbRotation & \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|245/246|\f7const SbRotation & \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|247|\f8operator =\*(Cr(const SbRotation & newValue) |\*(Cboperator =\*(Cr(const SbRotation & newValue) )         (rof_escape_sequence|91|SoMFRotation.3iv|252|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|259/260|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|259/260|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|261/262|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|261/262|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|263|\f8setValue\*(Cr(const SbRotation & newValue) |\*(CbsetValue\*(Cr(const SbRotation & newValue) )         (rof_escape_sequence|91|SoMFRotation.3iv|268|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoMFRotation.3iv|275/276|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|275/276|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|277/278|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|277/278|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|279|\f8operator ==\*(Cr(const SoMFRotation &f) const |\*(Cboperator ==\*(Cr(const SoMFRotation &f) const )         (rof_escape_sequence|91|SoMFRotation.3iv|284|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoMFRotation.3iv|291/292|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|291/292|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|293/294|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|293/294|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|295|\f8operator !=\*(Cr(const SoMFRotation &f) const |\*(Cboperator !=\*(Cr(const SoMFRotation &f) const )         (rof_escape_sequence|91|SoMFRotation.3iv|300|\f7SbRotation * |.ds Pt \*(CrSbRotation * )         (parse_manual_page_|249|SoMFRotation.3iv|307/308|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|307/308|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|309/310|\f7SbRotation * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|309/310|\f7SbRotation * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|311|\f8startEditing\*(Cr() |\*(CbstartEditing\*(Cr() )         (rof_escape_sequence|91|SoMFRotation.3iv|316|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|323/324|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|323/324|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|325/326|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|325/326|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|327|\f8finishEditing\*(Cr() |\*(CbfinishEditing\*(Cr() )         (rof_escape_sequence|91|SoMFRotation.3iv|337|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoMFRotation.3iv|344/345|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|344/345|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|346/347|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|346/347|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|348|\f8getNum\*(Cr() const |\*(CbgetNum\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|353|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|360/361|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|360/361|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|362/363|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|362/363|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|364|\f8setNum\*(Cr(int num) |\*(CbsetNum\*(Cr(int num) )         (rof_escape_sequence|91|SoMFRotation.3iv|369|\f7virtual void |.ds Pt \*(Crvirtual void )         (parse_manual_page_|249|SoMFRotation.3iv|376/377|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|376/377|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|378/379|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|378/379|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|380|\f8deleteValues\*(Cr(int start, int num = -1) |\*(CbdeleteValues\*(Cr(int start, int num = -1) )         (rof_escape_sequence|91|SoMFRotation.3iv|385|\f7virtual void |.ds Pt \*(Crvirtual void )         (parse_manual_page_|249|SoMFRotation.3iv|392/393|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|392/393|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|394/395|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|394/395|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|396|\f8insertSpace\*(Cr(int start, int num) |\*(CbinsertSpace\*(Cr(int start, int num) )         (rof_escape_sequence|91|SoMFRotation.3iv|401|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|408/409|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|408/409|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|410/411|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|410/411|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|412|\f8set1\*(Cr(int index, const char *valueString) |\*(Cbset1\*(Cr(int index, const char *valueString) )         (rof_escape_sequence|91|SoMFRotation.3iv|417|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|424/425|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|424/425|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|426/427|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|426/427|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|428|\f8get1\*(Cr(int index, SbString &valueString) |\*(Cbget1\*(Cr(int index, SbString &valueString) )         (rof_escape_sequence|91|SoMFRotation.3iv|438|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|445/446|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|445/446|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|447/448|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|447/448|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|449|\f8setIgnored\*(Cr(SbBool ignore) |\*(CbsetIgnored\*(Cr(SbBool ignore) )         (rof_escape_sequence|91|SoMFRotation.3iv|454|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|461/462|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|461/462|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|463/464|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|463/464|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|465|\f8isIgnored\*(Cr() const |\*(CbisIgnored\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|470|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|477/478|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|477/478|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|479/480|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|479/480|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|481|\f8isDefault\*(Cr() const |\*(CbisDefault\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|486|\f7virtual SbBool |.ds Pt \*(Crvirtual SbBool )         (parse_manual_page_|249|SoMFRotation.3iv|493/494|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|493/494|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|495/496|\f7virtual SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|495/496|\f7virtual SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|497|\f8isOfType\*(Cr(SoType type) const |\*(CbisOfType\*(Cr(SoType type) const )         (rof_escape_sequence|91|SoMFRotation.3iv|502|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|509/510|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|509/510|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|511/512|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|511/512|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|513|\f8set\*(Cr(const char *valueString) |\*(Cbset\*(Cr(const char *valueString) )         (rof_escape_sequence|91|SoMFRotation.3iv|518|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|525/526|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|525/526|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|527/528|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|527/528|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|529|\f8get\*(Cr(SbString &valueString) |\*(Cbget\*(Cr(SbString &valueString) )         (rof_escape_sequence|91|SoMFRotation.3iv|534|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|541/542|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|541/542|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|543/544|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|543/544|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|545|\f8touch\*(Cr() |\*(Cbtouch\*(Cr() )         (rof_escape_sequence|91|SoMFRotation.3iv|550|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|557/558|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|557/558|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|559/560|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|559/560|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|561|\f8connectFrom\*(Cr(SoField *fromField) |\*(CbconnectFrom\*(Cr(SoField *fromField) )         (rof_escape_sequence|91|SoMFRotation.3iv|566|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|573/574|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|573/574|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|575/576|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|575/576|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|577|\f8connectFrom\*(Cr(SoEngineOutput *fromEngine) |\*(CbconnectFrom\*(Cr(SoEngineOutput *fromEngine) )         (rof_escape_sequence|91|SoMFRotation.3iv|582|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|589/590|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|589/590|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|591/592|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|591/592|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|593|\f8disconnect\*(Cr() |\*(Cbdisconnect\*(Cr() )         (rof_escape_sequence|91|SoMFRotation.3iv|598|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|605/606|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|605/606|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|607/608|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|607/608|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|609|\f8isConnected\*(Cr() const |\*(CbisConnected\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|614|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|621/622|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|621/622|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|623/624|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|623/624|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|625|\f8isConnectedFromField\*(Cr() const |\*(CbisConnectedFromField\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|630|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|637/638|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|637/638|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|639/640|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|639/640|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|641|\f8getConnectedField\*(Cr(SoField *&writingField) const |\*(CbgetConnectedField\*(Cr(SoField *&writingField) const )         (rof_escape_sequence|91|SoMFRotation.3iv|646|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|653/654|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|653/654|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|655/656|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|655/656|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|657|\f8isConnectedFromEngine\*(Cr() const |\*(CbisConnectedFromEngine\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|662|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|669/670|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|669/670|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|671/672|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|671/672|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|673|\f8getConnectedEngine\*(Cr(SoEngineOutput *&engineOutput) const |\*(CbgetConnectedEngine\*(Cr(SoEngineOutput *&engineOutput) const )         (rof_escape_sequence|91|SoMFRotation.3iv|678|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|685/686|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|685/686|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|687/688|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|687/688|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|689|\f8enableConnection\*(Cr(SbBool flag) |\*(CbenableConnection\*(Cr(SbBool flag) )         (rof_escape_sequence|91|SoMFRotation.3iv|694|\f7SbBool |.ds Pt \*(CrSbBool )         (parse_manual_page_|249|SoMFRotation.3iv|701/702|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|701/702|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|703/704|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|703/704|\f7SbBool \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|705|\f8isConnectionEnabled\*(Cr() const |\*(CbisConnectionEnabled\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|710|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoMFRotation.3iv|717/718|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|717/718|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|719/720|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|719/720|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|721|\f8getForwardConnections\*(Cr(SoFieldList &list) const |\*(CbgetForwardConnections\*(Cr(SoFieldList &list) const )         (rof_escape_sequence|91|SoMFRotation.3iv|726|\f7SoFieldContainer * |.ds Pt \*(CrSoFieldContainer * )         (parse_manual_page_|249|SoMFRotation.3iv|733/734|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|733/734|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|735/736|\f7SoFieldContainer * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|735/736|\f7SoFieldContainer * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|737|\f8getContainer\*(Cr() const |\*(CbgetContainer\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|742|\f8SoMFRotations\f1 are written to file as one or more sets of four floating point values. Each set of 4 values is an axis of rotation followed by the amount |\*(CbSoMFRotations\f1 are written to file as one or more sets of four floating point values. Each set of 4 values is an axis of rotation followed by the amount )         (rof_escape_sequence|91|SoMFRotation.3iv|759|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|766/767|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|766/767|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|768/769|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|768/769|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|770|\f8set1Value\*(Cr(int index, const SbVec3f &axis, float angle) |\*(Cbset1Value\*(Cr(int index, const SbVec3f &axis, float angle) )         (rof_escape_sequence|91|SoMFRotation.3iv|773|\f7index\f1'th value to the given axis/angle. |\f1Sets the \*(Crindex\f1'th value to the given axis/angle. )         (rof_escape_sequence|91|SoMFRotation.3iv|779|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|786/787|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|786/787|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|788/789|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|788/789|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|790|\f8setValue\*(Cr(const SbVec3f &axis, float angle) |\*(CbsetValue\*(Cr(const SbVec3f &axis, float angle) )         (rof_escape_sequence|91|SoMFRotation.3iv|793|\f7axis\f1 and \*(Crangle\f1. |\f1Makes this field have exactly one value, given by \*(Craxis\f1 and \*(Crangle\f1. )         (rof_escape_sequence|91|SoMFRotation.3iv|799|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|806/807|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|806/807|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|808/809|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|808/809|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|810|\f8set1Value\*(Cr(int index, float q0, float q1, float q2, float q3) |\*(Cbset1Value\*(Cr(int index, float q0, float q1, float q2, float q3) )         (rof_escape_sequence|91|SoMFRotation.3iv|815|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|822/823|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|822/823|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|824/825|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|824/825|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|826|\f8set1Value\*(Cr(int index, const float q[4]) |\*(Cbset1Value\*(Cr(int index, const float q[4]) )         (rof_escape_sequence|91|SoMFRotation.3iv|829|\f7index\f1'th value to the given quaternion. |\f1Sets the \*(Crindex\f1'th value to the given quaternion. )         (rof_escape_sequence|91|SoMFRotation.3iv|835|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|842/843|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|842/843|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|844/845|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|844/845|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|846|\f8setValue\*(Cr(float q0, float q1, float q2, float q3) |\*(CbsetValue\*(Cr(float q0, float q1, float q2, float q3) )         (rof_escape_sequence|91|SoMFRotation.3iv|851|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|858/859|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|858/859|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|860/861|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|860/861|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|862|\f8setValue\*(Cr(float q[4]) |\*(CbsetValue\*(Cr(float q[4]) )         (rof_escape_sequence|91|SoMFRotation.3iv|871|\f7static SoType |.ds Pt \*(Crstatic SoType )         (parse_manual_page_|249|SoMFRotation.3iv|878/879|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|878/879|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|880/881|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|880/881|\f7static SoType \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|882|\f8getClassTypeId\*(Cr() |\*(CbgetClassTypeId\*(Cr() )         (rof_escape_sequence|91|SoMFRotation.3iv|887|\f7virtual void |.ds Pt \*(Crvirtual void )         (parse_manual_page_|249|SoMFRotation.3iv|894/895|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|894/895|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|896/897|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|896/897|\f7virtual void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|898|\f8getTypeId\*(Cr() const |\*(CbgetTypeId\*(Cr() const )         (rof_escape_sequence|91|SoMFRotation.3iv|907|\f7const SbRotation & |.ds Pt \*(Crconst SbRotation & )         (parse_manual_page_|249|SoMFRotation.3iv|914/915|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|914/915|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|916/917|\f7const SbRotation & \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|916/917|\f7const SbRotation & \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|918|\f8operator [\|]\*(Cr(int i) const |\*(Cboperator [\|]\*(Cr(int i) const )         (rof_escape_sequence|91|SoMFRotation.3iv|921|\f7i\f1'th value of the field. Indexing past the end of the field (passing in \*(Cri\f1 greater than \*(CbgetNum()\f1) will return garbage. |\f1Returns the \*(Cri\f1'th value of the field. Indexing past the end of the field (passing in \*(Cri\f1 greater than \*(CbgetNum()\f1) will return garbage. )         (rof_escape_sequence|91|SoMFRotation.3iv|927|\f7const SbRotation * |.ds Pt \*(Crconst SbRotation * )         (parse_manual_page_|249|SoMFRotation.3iv|934/935|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|934/935|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|936/937|\f7const SbRotation * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|936/937|\f7const SbRotation * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|938|\f8getValues\*(Cr(int start) const |\*(CbgetValues\*(Cr(int start) const )         (rof_escape_sequence|91|SoMFRotation.3iv|941|\f7start\f1. The values are read-only; see the \*(CbstartEditing()\f1/\*(CbfinishEditing()\f1 methods for a way of modifying values in place. |\f1Returns a pointer into the array of values in the field, starting at index \*(Crstart\f1. The values are read-only; see the \*(CbstartEditing()\f1/\*(CbfinishEditing()\f1 methods for a way of modifying values in place. )         (rof_escape_sequence|91|SoMFRotation.3iv|947|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoMFRotation.3iv|954/955|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|954/955|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|956/957|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|956/957|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|958|\f8find\*(Cr(const SbRotation & targetValue, SbBool addIfNotFound = FALSE) |\*(Cbfind\*(Cr(const SbRotation & targetValue, SbBool addIfNotFound = FALSE) )         (rof_escape_sequence|91|SoMFRotation.3iv|961|\f7addIfNotFound\f1 is set, then \*(CrtargetValue\f1 is added to the end of the array (but -1 is still returned). |\f1Finds 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 \*(CraddIfNotFound\f1 is set, then \*(CrtargetValue\f1 is added to the end of the array (but -1 is still returned). )         (rof_escape_sequence|91|SoMFRotation.3iv|967|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|974/975|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|974/975|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|976/977|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|976/977|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|978|\f8setValues\*(Cr(int start, int num, const SbRotation *newValues) |\*(CbsetValues\*(Cr(int start, int num, const SbRotation *newValues) )         (rof_escape_sequence|91|SoMFRotation.3iv|981|\f7num\f1 values starting at index \*(Crstart\f1 to the values in \*(CrnewValues\f1. The array will be automatically be made larger to accomodate the new values, if necessary. |\f1Sets \*(Crnum\f1 values starting at index \*(Crstart\f1 to the values in \*(CrnewValues\f1. The array will be automatically be made larger to accomodate the new values, if necessary. )         (rof_escape_sequence|91|SoMFRotation.3iv|987|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|994/995|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|994/995|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|996/997|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|996/997|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|998|\f8set1Value\*(Cr(int index, const SbRotation & newValue) |\*(Cbset1Value\*(Cr(int index, const SbRotation & newValue) )         (rof_escape_sequence|91|SoMFRotation.3iv|1001|\f7index\f1'th value in the array to \*(CrnewValue\f1. The array will be automatically expanded, if necessary. |\f1Sets the \*(Crindex\f1'th value in the array to \*(CrnewValue\f1. The array will be automatically expanded, if necessary. )         (rof_escape_sequence|91|SoMFRotation.3iv|1007|\f7const SbRotation & |.ds Pt \*(Crconst SbRotation & )         (parse_manual_page_|249|SoMFRotation.3iv|1014/1015|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|1014/1015|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|1016/1017|\f7const SbRotation & \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|1016/1017|\f7const SbRotation & \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|1018|\f8operator =\*(Cr(const SbRotation & newValue) |\*(Cboperator =\*(Cr(const SbRotation & newValue) )         (rof_escape_sequence|91|SoMFRotation.3iv|1023|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|1030/1031|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|1030/1031|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|1032/1033|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|1032/1033|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|1034|\f8setValue\*(Cr(const SbRotation & newValue) |\*(CbsetValue\*(Cr(const SbRotation & newValue) )         (rof_escape_sequence|91|SoMFRotation.3iv|1037|\f7newValue\f1, and deletes the second and subsequent values. |\f1Sets the first value in the array to \*(CrnewValue\f1, and deletes the second and subsequent values. )         (rof_escape_sequence|91|SoMFRotation.3iv|1043|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoMFRotation.3iv|1050/1051|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|1050/1051|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|1052/1053|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|1052/1053|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|1054|\f8operator ==\*(Cr(const SoMFRotation &f) const |\*(Cboperator ==\*(Cr(const SoMFRotation &f) const )         (rof_escape_sequence|91|SoMFRotation.3iv|1059|\f7int |.ds Pt \*(Crint )         (parse_manual_page_|249|SoMFRotation.3iv|1066/1067|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|1066/1067|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|1068/1069|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|1068/1069|\f7int \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|1070|\f8operator !=\*(Cr(const SoMFRotation &f) const |\*(Cboperator !=\*(Cr(const SoMFRotation &f) const )         (rof_escape_sequence|91|SoMFRotation.3iv|1073|\f8SoMFFloat\f1 with one value of |\f1Returns 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 \*(CbSoMFFloat\f1 with one value of )         (rof_escape_sequence|91|SoMFRotation.3iv|1074|\f8SoMFInt\f1 with a value of 1, for example). |\&1.0 and the other is an \*(CbSoMFInt\f1 with a value of 1, for example). )         (rof_escape_sequence|91|SoMFRotation.3iv|1080|\f7SbRotation * |.ds Pt \*(CrSbRotation * )         (parse_manual_page_|249|SoMFRotation.3iv|1087/1088|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|1087/1088|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|1089/1090|\f7SbRotation * \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|1089/1090|\f7SbRotation * \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|1091|\f8startEditing\*(Cr() |\*(CbstartEditing\*(Cr() )         (rof_escape_sequence|91|SoMFRotation.3iv|1096|\f7void |.ds Pt \*(Crvoid )         (parse_manual_page_|249|SoMFRotation.3iv|1103/1104|el══─{─══.ne|.el══─{─══.ne 2 )         (htmlprn|149|SoMFRotation.3iv|1103/1104|.el══─{─══.ne 2 |.el══─{─══.ne 2 )         (rof_escape_sequence|91|SoMFRotation.3iv|1105/1106|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (htmlprn|149|SoMFRotation.3iv|1105/1106|\f7void \c══─}─══ |\*(Pt \c══─}─══ )         (rof_escape_sequence|91|SoMFRotation.3iv|1107|\f8finishEditing\*(Cr() |\*(CbfinishEditing\*(Cr() )         (rof_escape_sequence|91|SoMFRotation.3iv|1110|\f8startEditing()\f1 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 |\f1\*(CbstartEditing()\f1 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 )         (rof_escape_sequence|91|SoMFRotation.3iv|1111|\f8startEditing()\f1 and \*(CbfinishEditing()\f1 (e.g. \*(Cbset1Value()\f1, \*(CbsetValue()\f1, etc). |\&between \*(CbstartEditing()\f1 and \*(CbfinishEditing()\f1 (e.g. \*(Cbset1Value()\f1, \*(CbsetValue()\f1, etc). )         (rof_escape_sequence|91|SoMFRotation.3iv|1113|\f8finishEditing()\f1 is called. Calling \*(CbfinishEditing()\f1 always sets the \*(CbisDefault()\f1 flag to FALSE and informs engines and |Fields, engines or sensors connected to this field and sensors are not notified that this field has changed until \*(CbfinishEditing()\f1 is called. Calling \*(CbfinishEditing()\f1 always sets the \*(CbisDefault()\f1 flag to FALSE and informs engines and )         (rof_escape_sequence|91|SoMFRotation.3iv|1118|\f8SbRotation |\*(CbSbRotation )