Home | History | Annotate | Download | only in dom

Lines Matching refs:_value

41 	domFloat4x4 _value;
56 * Gets the _value array.
57 * @return Returns a domFloat4x4 reference of the _value array.
59 domFloat4x4 &getValue() { return _value; }
61 * Gets the _value array.
62 * @return Returns a constant domFloat4x4 reference of the _value array.
64 const domFloat4x4 &getValue() const { return _value; }
66 * Sets the _value array.
67 * @param val The new value for the _value array.
69 void setValue( const domFloat4x4 &val ) { _value = val; }
75 domMatrix(DAE& dae) : daeElement(dae), attrSid(), _value() {}