Panda3D
cast_to_float.I
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file cast_to_float.I
10  * @author drose
11  * @date 2000-05-24
12  */
13 
14 INLINE_LINMATH LVecBase2f cast_to_float(const LVecBase2d &source) {
15  return LCAST(float, source);
16 }
17 
18 INLINE_LINMATH LVecBase3f cast_to_float(const LVecBase3d &source) {
19  return LCAST(float, source);
20 }
21 
22 INLINE_LINMATH LVecBase4f cast_to_float(const LVecBase4d &source) {
23  return LCAST(float, source);
24 }
25 
26 INLINE_LINMATH LVector2f cast_to_float(const LVector2d &source) {
27  return LCAST(float, source);
28 }
29 
30 INLINE_LINMATH LVector3f cast_to_float(const LVector3d &source) {
31  return LCAST(float, source);
32 }
33 
34 INLINE_LINMATH LVector4f cast_to_float(const LVector4d &source) {
35  return LCAST(float, source);
36 }
37 
38 INLINE_LINMATH LPoint2f cast_to_float(const LPoint2d &source) {
39  return LCAST(float, source);
40 }
41 
42 INLINE_LINMATH LPoint3f cast_to_float(const LPoint3d &source) {
43  return LCAST(float, source);
44 }
45 
46 INLINE_LINMATH LPoint4f cast_to_float(const LPoint4d &source) {
47  return LCAST(float, source);
48 }
49 
50 INLINE_LINMATH LMatrix3f cast_to_float(const LMatrix3d &source) {
51  return LCAST(float, source);
52 }
53 
54 INLINE_LINMATH LMatrix4f cast_to_float(const LMatrix4d &source) {
55  return LCAST(float, source);
56 }