00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CAST_TO_DOUBLE_H
00016 #define CAST_TO_DOUBLE_H
00017
00018 #include "luse.h"
00019
00020
00021
00022
00023
00024
00025 INLINE_LINMATH LVecBase2d cast_to_double(const LVecBase2f &source);
00026 INLINE_LINMATH LVecBase3d cast_to_double(const LVecBase3f &source);
00027 INLINE_LINMATH LVecBase4d cast_to_double(const LVecBase4f &source);
00028 INLINE_LINMATH LVector2d cast_to_double(const LVector2f &source);
00029 INLINE_LINMATH LVector3d cast_to_double(const LVector3f &source);
00030 INLINE_LINMATH LVector4d cast_to_double(const LVector4f &source);
00031 INLINE_LINMATH LPoint2d cast_to_double(const LPoint2f &source);
00032 INLINE_LINMATH LPoint3d cast_to_double(const LPoint3f &source);
00033 INLINE_LINMATH LPoint4d cast_to_double(const LPoint4f &source);
00034 INLINE_LINMATH LMatrix3d cast_to_double(const LMatrix3f &source);
00035 INLINE_LINMATH LMatrix4d cast_to_double(const LMatrix4f &source);
00036
00037 #include "cast_to_double.I"
00038
00039 #endif
00040
00041