logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SoMFVec2f — multiple-value field containing any number of two-dimensional vectors

Description

       A multiple-value field that contains any number of two-dimensional vectors.

       SoMFVec2fs  are  written  to  file as one or more pairs of floating point values 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:

          [ 0 0, 1.2 3.4, 98.6 -4e1 ]

Inherits From

       SoField > SoMField > SoMFVec2f

Methods

voidsetValues(intstart,intnum,constfloatxy[][2])
          Sets num values starting at index start to the given floating point values. There must be num*2 values
          in the passed array.

     voidset1Value(intindex,floatx,floaty)voidset1Value(intindex,constfloatxy[2])
          Set the index'th value to the given floating point values.

     voidsetValue(floatx,floaty)voidsetValue(constfloatxy[2])
          Sets  the  field to contain the given value and only the given value (if the array had multiple values
          before, they are deleted).

     staticSoTypegetClassTypeId()virtualvoidgetTypeId()const
          Returns the type for this class or a particular object of this class.

     constSbVec2f&operator[](inti)const
          Returns the i'th value of the field. Indexing past the end of the field (passing  in  i  greater  than
          getNum()) will return garbage.

     constSbVec2f*getValues(intstart)const
          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.

     intfind(constSbVec2f&targetValue,SbBooladdIfNotFound=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).

     voidsetValues(intstart,intnum,constSbVec2f*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.

     voidset1Value(intindex,constSbVec2f&newValue)
          Sets  the  index'th  value  in  the  array  to  newValue. The array will be automatically expanded, if
          necessary.

     constSbVec2f&operator=(constSbVec2f&newValue)voidsetValue(constSbVec2f&newValue)
          Sets the first value in the array to newValue, and deletes the second and subsequent values.

     intoperator==(constSoMFVec2f&f)constintoperator!=(constSoMFVec2f&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).

     SbVec2f*startEditing()voidfinishEditing()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.

                                                                                                SoMFVec2f(3IV)()

Name

       SoMFVec2f — multiple-value field containing any number of two-dimensional vectors

Synopsis

#include<Inventor/fields/SoMFVec2f.h>

          Methods from class SoMFVec2f:

     voidsetValues(intstart,intnum,constfloatxy[][2])voidset1Value(intindex,floatx,floaty)voidset1Value(intindex,constfloatxy[2])voidsetValue(floatx,floaty)voidsetValue(constfloatxy[2])staticSoTypegetClassTypeId()virtualvoidgetTypeId()constconstSbVec2f&operator[](inti)constconstSbVec2f*getValues(intstart)constintfind(constSbVec2f&targetValue,SbBooladdIfNotFound=FALSE)voidsetValues(intstart,intnum,constSbVec2f*newValues)voidset1Value(intindex,constSbVec2f&newValue)constSbVec2f&operator=(constSbVec2f&newValue)voidsetValue(constSbVec2f&newValue)intoperator==(constSoMFVec2f&f)constintoperator!=(constSoMFVec2f&f)constSbVec2f*startEditing()voidfinishEditing()

          Methods from class SoMField:

     intgetNum()constvoidsetNum(intnum)virtualvoiddeleteValues(intstart,intnum=-1)virtualvoidinsertSpace(intstart,intnum)SbBoolset1(intindex,constchar*valueString)voidget1(intindex,SbString&valueString)

          Methods from class SoField:

     voidsetIgnored(SbBoolignore)SbBoolisIgnored()constSbBoolisDefault()constvirtualSbBoolisOfType(SoTypetype)constSbBoolset(constchar*valueString)voidget(SbString&valueString)voidtouch()SbBoolconnectFrom(SoField*fromField)SbBoolconnectFrom(SoEngineOutput*fromEngine)voiddisconnect()SbBoolisConnected()constSbBoolisConnectedFromField()constSbBoolgetConnectedField(SoField*&writingField)constSbBoolisConnectedFromEngine()constSbBoolgetConnectedEngine(SoEngineOutput*&engineOutput)constvoidenableConnection(SbBoolflag)SbBoolisConnectionEnabled()constintgetForwardConnections(SoFieldList&list)constSoFieldContainer*getContainer()const

See Also