00001 #ifndef XDKWRL_COORDINATE_H
00002 #define XDKWRL_COORDINATE_H
00003
00004 #include <xdkwrl/config.h>
00005 #include <xdkwrl/node.h>
00006 #include <xdkwrl/fieldtypes/mfvec3f.h>
00007
00008 namespace wrl
00009 {
00010
00011
00012
00013 class XDKWRL_EXPORT Coordinate : public Node
00014 {
00015 public:
00016 Coordinate(const char* name="");
00017 virtual ~Coordinate();
00018 virtual inline unsigned int nbFields() const;
00019 virtual FieldHandle field(const std::string& n);
00020 virtual FieldHandle field(unsigned int i);
00021 virtual bool isSetToDefaultValue(unsigned int i) const;
00022 virtual inline unsigned int nbEventsIn() const;
00023 virtual EventInHandle eventIn(const std::string& n);
00024 virtual EventInHandle eventIn(unsigned int i);
00025 virtual inline unsigned int nbEventsOut() const;
00026 virtual EventOutHandle eventOut(const std::string& n);
00027 virtual EventOutHandle eventOut(unsigned int i);
00028 inline const char* typeName() const;
00029 virtual Node* duplicate() const;
00030 virtual Node* duplicate(std::map<const Node*,Node*>&) const;
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 MFVec3f point;
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058 EventIn<MFVec3f> set_point;
00059
00060
00061
00062
00063
00064
00065
00066
00067 EventOut<MFVec3f> point_changed;
00068
00069 };
00070 };
00071
00072
00073
00074
00075
00076
00077 inline const char*
00078 wrl::Coordinate::typeName() const
00079 {
00080 return "Coordinate";
00081 }
00082
00083
00084
00085 inline unsigned int
00086 wrl::Coordinate::nbFields() const
00087 {
00088 return 1;
00089 }
00090
00091
00092
00093 inline unsigned int
00094 wrl::Coordinate::nbEventsIn() const
00095 {
00096 return 0;
00097 }
00098
00099
00100
00101 inline unsigned int
00102 wrl::Coordinate::nbEventsOut() const
00103 {
00104 return 0;
00105 }
00106 #endif // XDKWRL_COORDINATE_H
00107
00108
00109
00110
00111
00112