Panda3D
 All Classes Functions Variables Enumerations
oSphereLens.I
1 // Filename: oSphereLens.I
2 // Created by: drose (25Feb11)
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: OSphereLens::Constructor
17 // Access: Public
18 // Description:
19 ////////////////////////////////////////////////////////////////////
20 INLINE OSphereLens::
21 OSphereLens() {
22 }
23 
24 ////////////////////////////////////////////////////////////////////
25 // Function: OSphereLens::Copy Constructor
26 // Access: Public
27 // Description:
28 ////////////////////////////////////////////////////////////////////
29 INLINE OSphereLens::
30 OSphereLens(const OSphereLens &copy) : Lens(copy) {
31 }
32 
33 ////////////////////////////////////////////////////////////////////
34 // Function: OSphereLens::Copy Assignment Operator
35 // Access: Public
36 // Description:
37 ////////////////////////////////////////////////////////////////////
38 INLINE void OSphereLens::
39 operator = (const OSphereLens &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 OSphereLens is a special nonlinear lens that doesn't correspond to any real physical lenses...
Definition: oSphereLens.h:34