Panda3D
panda
src
movies
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
*/
22
InkblotVideo::
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
}
MovieVideoCursor
A MovieVideo is actually any source that provides a sequence of video frames.
Definition:
movieVideoCursor.h:41
inkblotVideo.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
TypeHandle
TypeHandle is the identifier used to differentiate C++ class types.
Definition:
typeHandle.h:81
InkblotVideoCursor
A cellular automaton that generates an amusing pattern of swirling colors.
Definition:
inkblotVideoCursor.h:26
inkblotVideoCursor.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
InkblotVideo::InkblotVideo
InkblotVideo(int x, int y, int fps)
xxx
Definition:
inkblotVideo.cxx:23
PT
PT(MovieVideoCursor) InkblotVideo
Open this video, returning a MovieVideoCursor.
Definition:
inkblotVideo.cxx:40
Generated on Sun Dec 27 2020 13:23:05 for Panda3D by
1.8.20