00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef HxBpoVec2_h
00011 #define HxBpoVec2_h
00012
00013 #include "HxTagList.h"
00014 #include "HxClassName.h"
00015 #include "HxCategories.h"
00016
00017
00018 template<class DstValT, class Src1ValT, class Src2ValT>
00019 class HxBpoVec2
00020 {
00021 public:
00023 typedef HxTagTransInVar TransVarianceCategory;
00024
00025 HxBpoVec2(HxTagList& tags) {}
00026
00027 DstValT doIt(const Src1ValT& x, const Src2ValT& y)
00028 { return DstValT(x.getValue(1), y.getValue(1)); }
00029
00030 static HxString className()
00031 { return HxString("vector2d"); }
00032
00033 };
00034
00035 #endif
00036