Panda3D
inkblotVideo.cxx
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 inkblotVideo.cxx
10  * @author jyelon
11  * @date 2007-07-02
12  */
13 
14 #include "inkblotVideo.h"
15 #include "inkblotVideoCursor.h"
16 
17 TypeHandle InkblotVideo::_type_handle;
18 
19 /**
20  * xxx
21  */
23 InkblotVideo(int x, int y, int fps) :
24  _specified_x(x),
25  _specified_y(y),
26  _specified_fps(fps)
27 {
28 }
29 
30 /**
31  *
32  */
33 InkblotVideo::
34 ~InkblotVideo() {
35 }
36 
37 /**
38  * Open this video, returning a MovieVideoCursor.
39  */
40 PT(MovieVideoCursor) InkblotVideo::
41 open() {
42  return new InkblotVideoCursor(this);
43 }
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PT(MovieVideoCursor) InkblotVideo
Open this video, returning a MovieVideoCursor.
A cellular automaton that generates an amusing pattern of swirling colors.
A MovieVideo is actually any source that provides a sequence of video frames.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
InkblotVideo(int x, int y, int fps)
xxx
TypeHandle is the identifier used to differentiate C++ class types.
Definition: typeHandle.h:81