Panda3D
 All Classes Functions Variables Enumerations
cylindricalLens.I
1 // Filename: cylindricalLens.I
2 // Created by: drose (12Dec01)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 ////////////////////////////////////////////////////////////////////
16 // Function: CylindricalLens::Constructor
17 // Access: Public
18 // Description:
19 ////////////////////////////////////////////////////////////////////
20 INLINE CylindricalLens::
21 CylindricalLens() {
22 }
23 
24 ////////////////////////////////////////////////////////////////////
25 // Function: CylindricalLens::Copy Constructor
26 // Access: Public
27 // Description:
28 ////////////////////////////////////////////////////////////////////
29 INLINE CylindricalLens::
30 CylindricalLens(const CylindricalLens &copy) : Lens(copy) {
31 }
32 
33 ////////////////////////////////////////////////////////////////////
34 // Function: CylindricalLens::Copy Assignment Operator
35 // Access: Public
36 // Description:
37 ////////////////////////////////////////////////////////////////////
38 INLINE void CylindricalLens::
39 operator = (const CylindricalLens &copy) {
40  Lens::operator = (copy);
41 }
42 
A base class for any number of different kinds of lenses, linear and otherwise.
Definition: lens.h:45
A cylindrical lens.