Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4997/src/libopenvrml/openvrml
Modified Files:
basetypes.h
Log Message:
Added missing applications of OPENVRML_API.
Index: basetypes.h
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/basetypes.h,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** basetypes.h 31 Aug 2006 06:45:30 -0000 1.25
--- basetypes.h 6 Sep 2006 09:57:16 -0000 1.26
***************
*** 706,728 ****
};
! const mat4f make_mat4f() OPENVRML_NOTHROW;
! const mat4f make_mat4f(float f11, float f12, float f13, float f14,
! float f21, float f22, float f23, float f24,
! float f31, float f32, float f33, float f34,
! float f41, float f42, float f43, float f44)
OPENVRML_NOTHROW;
- const mat4f make_mat4f(const float mat[16]) OPENVRML_NOTHROW;
- const mat4f make_mat4f(const float (&mat)[4][4]) OPENVRML_NOTHROW;
! const mat4f make_rotation_mat4f(const rotation & rot) OPENVRML_NOTHROW;
! const mat4f make_rotation_mat4f(const quatf & quat) OPENVRML_NOTHROW;
! const mat4f make_scale_mat4f(float s) OPENVRML_NOTHROW;
! const mat4f make_scale_mat4f(const vec3f & s) OPENVRML_NOTHROW;
! const mat4f make_translation_mat4f(const vec3f & t) OPENVRML_NOTHROW;
! const mat4f make_transformation_mat4f(const vec3f & t,
! const rotation & r,
! const vec3f & s,
! const rotation & sr,
! const vec3f & c) OPENVRML_NOTHROW;
OPENVRML_API bool operator==(const mat4f & lhs, const mat4f & rhs)
--- 706,736 ----
};
! OPENVRML_API const mat4f make_mat4f() OPENVRML_NOTHROW;
! OPENVRML_API const mat4f
! make_mat4f(float f11, float f12, float f13, float f14,
! float f21, float f22, float f23, float f24,
! float f31, float f32, float f33, float f34,
! float f41, float f42, float f43, float f44)
! OPENVRML_NOTHROW;
! OPENVRML_API const mat4f make_mat4f(const float mat[16]) OPENVRML_NOTHROW;
! OPENVRML_API const mat4f make_mat4f(const float (&mat)[4][4])
OPENVRML_NOTHROW;
! OPENVRML_API const mat4f make_rotation_mat4f(const rotation & rot)
! OPENVRML_NOTHROW;
! OPENVRML_API const mat4f make_rotation_mat4f(const quatf & quat)
! OPENVRML_NOTHROW;
! OPENVRML_API const mat4f make_scale_mat4f(float s)
! OPENVRML_NOTHROW;
! OPENVRML_API const mat4f make_scale_mat4f(const vec3f & s)
! OPENVRML_NOTHROW;
! OPENVRML_API const mat4f make_translation_mat4f(const vec3f & t)
! OPENVRML_NOTHROW;
! OPENVRML_API const mat4f make_transformation_mat4f(const vec3f & t,
! const rotation & r,
! const vec3f & s,
! const rotation & sr,
! const vec3f & c)
! OPENVRML_NOTHROW;
OPENVRML_API bool operator==(const mat4f & lhs, const mat4f & rhs)
***************
*** 782,790 ****
};
! const quatf make_quatf() OPENVRML_NOTHROW;
! const quatf make_quatf(float x, float y, float z, float w) OPENVRML_NOTHROW;
! const quatf make_quatf(const float (&quat)[4]) OPENVRML_NOTHROW;
! const quatf make_quatf(const rotation & rot) OPENVRML_NOTHROW;
! const quatf make_quatf(const mat4f & mat) OPENVRML_NOTHROW;
OPENVRML_API const quatf operator*(const quatf & lhs, const quatf & rhs)
--- 790,800 ----
};
! OPENVRML_API const quatf make_quatf() OPENVRML_NOTHROW;
! OPENVRML_API const quatf make_quatf(float x, float y, float z, float w)
! OPENVRML_NOTHROW;
! OPENVRML_API const quatf make_quatf(const float (&quat)[4])
! OPENVRML_NOTHROW;
! OPENVRML_API const quatf make_quatf(const rotation & rot) OPENVRML_NOTHROW;
! OPENVRML_API const quatf make_quatf(const mat4f & mat) OPENVRML_NOTHROW;
OPENVRML_API const quatf operator*(const quatf & lhs, const quatf & rhs)
|