Updated wrappers

This commit is contained in:
Robert Osfield
2006-10-24 09:45:50 +00:00
parent 85dc696c09
commit c892fafa1c
266 changed files with 37808 additions and 9935 deletions

View File

@@ -29,35 +29,124 @@ TYPE_NAME_ALIAS(double, osg::Vec4d::value_type);
BEGIN_VALUE_REFLECTOR(osg::Vec4d)
I_ReaderWriter(osgIntrospection::StdReaderWriter<reflected_type>); // user-defined
I_Comparator(osgIntrospection::PartialOrderComparator<reflected_type>); // user-defined
I_Constructor0();
I_Constructor4(IN, osg::Vec4d::value_type, x, IN, osg::Vec4d::value_type, y, IN, osg::Vec4d::value_type, z, IN, osg::Vec4d::value_type, w);
I_Constructor2(IN, const osg::Vec3d &, v3, IN, osg::Vec4d::value_type, w);
I_Constructor1(IN, const osg::Vec4f &, vec);
I_Method0(osg::Vec4d::value_type *, ptr);
I_Method0(const osg::Vec4d::value_type *, ptr);
I_Method4(void, set, IN, osg::Vec4d::value_type, x, IN, osg::Vec4d::value_type, y, IN, osg::Vec4d::value_type, z, IN, osg::Vec4d::value_type, w);
I_Method0(osg::Vec4d::value_type &, x);
I_Method0(osg::Vec4d::value_type &, y);
I_Method0(osg::Vec4d::value_type &, z);
I_Method0(osg::Vec4d::value_type &, w);
I_Method0(osg::Vec4d::value_type, x);
I_Method0(osg::Vec4d::value_type, y);
I_Method0(osg::Vec4d::value_type, z);
I_Method0(osg::Vec4d::value_type, w);
I_Method0(osg::Vec4d::value_type &, r);
I_Method0(osg::Vec4d::value_type &, g);
I_Method0(osg::Vec4d::value_type &, b);
I_Method0(osg::Vec4d::value_type &, a);
I_Method0(osg::Vec4d::value_type, r);
I_Method0(osg::Vec4d::value_type, g);
I_Method0(osg::Vec4d::value_type, b);
I_Method0(osg::Vec4d::value_type, a);
I_Method0(unsigned int, asABGR);
I_Method0(unsigned int, asRGBA);
I_Method0(bool, valid);
I_Method0(bool, isNaN);
I_Method0(osg::Vec4d::value_type, length);
I_Method0(osg::Vec4d::value_type, length2);
I_Method0(osg::Vec4d::value_type, normalize);
I_Constructor0(____Vec4d,
"",
"");
I_Constructor4(IN, osg::Vec4d::value_type, x, IN, osg::Vec4d::value_type, y, IN, osg::Vec4d::value_type, z, IN, osg::Vec4d::value_type, w,
____Vec4d__value_type__value_type__value_type__value_type,
"",
"");
I_Constructor2(IN, const osg::Vec3d &, v3, IN, osg::Vec4d::value_type, w,
____Vec4d__C5_Vec3d_R1__value_type,
"",
"");
I_Constructor1(IN, const osg::Vec4f &, vec,
____Vec4d__C5_Vec4f_R1,
"",
"");
I_Method0(osg::Vec4d::value_type *, ptr,
__value_type_P1__ptr,
"",
"");
I_Method0(const osg::Vec4d::value_type *, ptr,
__C5_value_type_P1__ptr,
"",
"");
I_Method4(void, set, IN, osg::Vec4d::value_type, x, IN, osg::Vec4d::value_type, y, IN, osg::Vec4d::value_type, z, IN, osg::Vec4d::value_type, w,
__void__set__value_type__value_type__value_type__value_type,
"",
"");
I_Method0(osg::Vec4d::value_type &, x,
__value_type_R1__x,
"",
"");
I_Method0(osg::Vec4d::value_type &, y,
__value_type_R1__y,
"",
"");
I_Method0(osg::Vec4d::value_type &, z,
__value_type_R1__z,
"",
"");
I_Method0(osg::Vec4d::value_type &, w,
__value_type_R1__w,
"",
"");
I_Method0(osg::Vec4d::value_type, x,
__value_type__x,
"",
"");
I_Method0(osg::Vec4d::value_type, y,
__value_type__y,
"",
"");
I_Method0(osg::Vec4d::value_type, z,
__value_type__z,
"",
"");
I_Method0(osg::Vec4d::value_type, w,
__value_type__w,
"",
"");
I_Method0(osg::Vec4d::value_type &, r,
__value_type_R1__r,
"",
"");
I_Method0(osg::Vec4d::value_type &, g,
__value_type_R1__g,
"",
"");
I_Method0(osg::Vec4d::value_type &, b,
__value_type_R1__b,
"",
"");
I_Method0(osg::Vec4d::value_type &, a,
__value_type_R1__a,
"",
"");
I_Method0(osg::Vec4d::value_type, r,
__value_type__r,
"",
"");
I_Method0(osg::Vec4d::value_type, g,
__value_type__g,
"",
"");
I_Method0(osg::Vec4d::value_type, b,
__value_type__b,
"",
"");
I_Method0(osg::Vec4d::value_type, a,
__value_type__a,
"",
"");
I_Method0(unsigned int, asABGR,
__unsigned_int__asABGR,
"",
"");
I_Method0(unsigned int, asRGBA,
__unsigned_int__asRGBA,
"",
"");
I_Method0(bool, valid,
__bool__valid,
"",
"");
I_Method0(bool, isNaN,
__bool__isNaN,
"",
"");
I_Method0(osg::Vec4d::value_type, length,
__value_type__length,
"Length of the vector = sqrt( vec . ",
"vec ) ");
I_Method0(osg::Vec4d::value_type, length2,
__value_type__length2,
"Length squared of the vector = vec . ",
"vec ");
I_Method0(osg::Vec4d::value_type, normalize,
__value_type__normalize,
"Normalize the vector so that it has length unity. ",
"Returns the previous length of the vector.");
END_REFLECTOR