91 lines
2.9 KiB
Plaintext
91 lines
2.9 KiB
Plaintext
// Filename: eggSAnimData.I
|
|
// Created by: drose (19Feb99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggSAnimData::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE EggSAnimData::
|
|
EggSAnimData(const string &name) : EggAnimData(name) {
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggSAnimData::Copy constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE EggSAnimData::
|
|
EggSAnimData(const EggSAnimData ©) : EggAnimData(copy) {
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggSAnimData::Copy assignment operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE EggSAnimData &EggSAnimData::
|
|
operator = (const EggSAnimData ©) {
|
|
EggAnimData::operator = (copy);
|
|
|
|
return *this;
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggSAnimData::get_num_rows
|
|
// Access: Public
|
|
// Description: Returns the number of rows in the table. For an
|
|
// SAnim table, each row has one column.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int EggSAnimData::
|
|
get_num_rows() const {
|
|
return get_size();
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggSAnimData::get_value
|
|
// Access: Public
|
|
// Description: Returns the value at the indicated row. Row must be
|
|
// in the range 0 <= row < get_num_rows().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE double EggSAnimData::
|
|
get_value(int row) const {
|
|
nassertr(row >= 0 && row < get_num_rows(), 0.0);
|
|
return _data[row];
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggSAnimData::set_value
|
|
// Access: Public
|
|
// Description: Changes the value at the indicated row. Row must be
|
|
// in the range 0 <= row < get_num_rows().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void EggSAnimData::
|
|
set_value(int row, double value) {
|
|
nassertv(row >= 0 && row < get_num_rows());
|
|
_data[row] = value;
|
|
}
|
|
|
|
|