28 lines
843 B
Plaintext
28 lines
843 B
Plaintext
// Filename: animChannelScalarTable.I
|
|
// Created by: drose (22Feb99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: AnimChannelScalarTable::has_table
|
|
// Access: Public
|
|
// Description: Returns true if the data table has been assigned.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool AnimChannelScalarTable::
|
|
has_table() const {
|
|
return !(_table == NULL);
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: AnimChannelScalarTable::clear_table
|
|
// Access: Public
|
|
// Description: Empties the data table.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void AnimChannelScalarTable::
|
|
clear_table() {
|
|
_table = NULL;
|
|
}
|
|
|