Home | History | Annotate | Download | only in dom

Lines Matching defs:domFloat3x3

1401 	class domFloat3x3;
1403 typedef daeSmartRef<domFloat3x3> domFloat3x3Ref;
1406 class domFloat3x3 : public daeElement
1415 * The ::domFloat3x3 value of the text data of this element.
1417 ::domFloat3x3 _value;
1422 * @return Returns a ::domFloat3x3 reference of the _value array.
1424 ::domFloat3x3 &getValue() { return _value; }
1427 * @return Returns a constant ::domFloat3x3 reference of the _value array.
1429 const ::domFloat3x3 &getValue() const { return _value; }
1434 void setValue( const ::domFloat3x3 &val ) { _value = val; }
1440 domFloat3x3(DAE& dae) : daeElement(dae), _value() {}
1444 virtual ~domFloat3x3() {}
1448 virtual domFloat3x3 &operator=( const domFloat3x3 &cpy ) { (void)cpy; return *this; }