Panda3D
Loading...
Searching...
No Matches
cLwoClip.I
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 cLwoClip.I
10 * @author drose
11 * @date 2001-04-27
12 */
13
14/**
15 * Returns the index number of this clip. Each clip in a Lightwave object
16 * file should have a unique index number.
17 */
19get_index() const {
20 return _clip->_index;
21}
22
23/**
24 * Returns true if this clip represents a still image, as opposed to an
25 * animated image. If this is true, _filename will contain the image
26 * filename.
27 */
29is_still_image() const {
30 return _still_image;
31}
bool is_still_image() const
Returns true if this clip represents a still image, as opposed to an animated image.
Definition cLwoClip.I:29
int get_index() const
Returns the index number of this clip.
Definition cLwoClip.I:19