|
inlib
1.2.0
|


Public Member Functions | |
| virtual bool | write (io::iwbuf &a_buffer) |
| virtual bool | read (io::irbuf &a_buffer) |
| virtual bool | dump (std::ostream &) |
| sf_rotf () | |
| sf_rotf (const rotf &a_value) | |
| virtual | ~sf_rotf () |
| sf_rotf (const sf_rotf &a_from) | |
| sf_rotf & | operator= (const sf_rotf &a_from) |
| sf_rotf & | operator= (const rotf &a_value) |
| inlib::sg::sf_rotf::sf_rotf | ( | const rotf & | a_value | ) | [inline] |
| inlib::sg::sf_rotf::sf_rotf | ( | const sf_rotf & | a_from | ) | [inline] |
| virtual bool inlib::sg::sf_rotf::dump | ( | std::ostream & | ) | [inline, virtual] |
Implements inlib::sg::field.
Definition at line 128 of file sfs.
{
//a_out << bsf<T>::m_value << std::endl;
return true;
}
Definition at line 138 of file sfs.
{
bsf<rotf>::operator=(a_from);
return *this;
}
Reimplemented from inlib::sg::bsf< rotf >.
Definition at line 143 of file sfs.
{
bsf<rotf>::operator=(a_value);
return *this;
}
| virtual bool inlib::sg::sf_rotf::read | ( | io::irbuf & | a_buffer | ) | [inline, virtual] |
Implements inlib::sg::field.
Definition at line 124 of file sfs.
{
std::vector<float>& vec = m_value.quat().vector();
return a_buffer.read_std_vec(vec);
}
| virtual bool inlib::sg::sf_rotf::write | ( | io::iwbuf & | a_buffer | ) | [inline, virtual] |
Implements inlib::sg::field.
1.7.5.1