| Home | Download | Screen shots | Discussion | Documentation |
|---|
#include <openvrml/field_value.h>

Public Types | |
| typedef vec2d | value_type |
| Type of value. | |
Public Member Functions | |
| sfvec2d (const vec2d &vec=vec2d()) throw () | |
| Construct. | |
| sfvec2d (const sfvec2d &sfv) | |
| Construct a copy. | |
| virtual | ~sfvec2d () throw () |
| Destroy. | |
| sfvec2d & | operator= (const sfvec2d &sfv) throw ( std::bad_alloc ) |
| Assign. | |
| const value_type & | value () const throw () |
| Access. | |
| void | value (const value_type &val) throw ( std::bad_alloc ) |
| Mutate. | |
| void | swap (sfvec2d &sfv) throw () |
| Swap. | |
Static Public Attributes | |
| static const type_id | field_value_type_id = sfvec2d_id |
field_value::type_id for this class. | |
Private Member Functions | |
| virtual std::auto_ptr < field_value > | do_clone () const throw ( std::bad_alloc ) |
| Polymorphically construct a copy. | |
| virtual sfvec2d & | do_assign (const field_value &value) throw ( std::bad_cast ) |
| Virtual assignment. | |
| virtual type_id | do_type () const throw () |
Get the field_value::type_id associated with this class. | |
| virtual void | print (std::ostream &) const |
| Print to an output stream. | |
Related Functions | |
| (Note that these are not member functions.) | |
| bool | operator== (const sfvec2d &lhs, const sfvec2d &rhs) throw() |
| Compare for equality. | |
| bool | operator!= (const sfvec2d &lhs, const sfvec2d &rhs) throw() |
| Compare for inequality. | |
| template<> void | swap (openvrml::sfvec2d &a, openvrml::sfvec2d &b) |
Swap the values of a and b. | |
Type of value.
Construct.
| [in] | vec | initial value. |
| openvrml::sfvec2d::sfvec2d | ( | const sfvec2d & | sfv | ) |
Construct a copy.
| [in] | sfv | the instance to copy. |
| openvrml::sfvec2d::~sfvec2d | ( | ) | throw () [virtual] |
Destroy.
| openvrml::sfvec2d & openvrml::sfvec2d::operator= | ( | const sfvec2d & | sfv | ) | throw ( std::bad_alloc ) |
Assign.
| [in] | sfv | the value to assign. |
| std::bad_alloc | if memory allocation fails. |
| const openvrml::sfvec2d::value_type & openvrml::sfvec2d::value | ( | ) | const throw () |
| void openvrml::sfvec2d::value | ( | const value_type & | val | ) | throw ( std::bad_alloc ) |
Mutate.
| [in] | val | the new value. |
| std::bad_alloc | if memory allocation fails. |
| void openvrml::sfvec2d::swap | ( | sfvec2d & | sfv | ) | throw () |
Swap.
| [in,out] | sfv | the value to swap with this one. |
| std::auto_ptr< openvrml::field_value > openvrml::sfvec2d::do_clone | ( | ) | const throw ( std::bad_alloc ) [private, virtual] |
Polymorphically construct a copy.
| std::bad_alloc | if memory allocation fails. |
Implements openvrml::field_value.
| openvrml::sfvec2d & openvrml::sfvec2d::do_assign | ( | const field_value & | value | ) | throw ( std::bad_cast ) [private, virtual] |
Virtual assignment.
| [in] | value | the new value to give the object. |
| std::bad_cast | if value is not an sfvec2d. |
Implements openvrml::field_value.
| openvrml::field_value::type_id openvrml::sfvec2d::do_type | ( | ) | const throw () [private, virtual] |
Get the field_value::type_id associated with this class.
field_value::sfvec2d. Implements openvrml::field_value.
| void openvrml::sfvec2d::print | ( | std::ostream & | out | ) | const [private, virtual] |
Print to an output stream.
| [in,out] | out | an output stream. |
Implements openvrml::field_value.
Compare for equality.
| [in] | lhs | left-hand operand. |
| [in] | rhs | right-hand operand. |
true if lhs and rhs have the same value; false otherwise. Compare for inequality.
| [in] | lhs | left-hand operand. |
| [in] | rhs | right-hand operand. |
true if lhs and rhs do not have the same value; false otherwise. | template<> void swap | ( | openvrml::sfvec2d & | a, | |
| openvrml::sfvec2d & | b | |||
| ) | [related] |
Swap the values of a and b.
Does not throw.
| [in,out] | a | |
| [in,out] | b |
const openvrml::field_value::type_id openvrml::sfvec2d::field_value_type_id = sfvec2d_id [static] |
field_value::type_id for this class.