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