25 lines
787 B
Plaintext
25 lines
787 B
Plaintext
// Filename: matrixDataAttribute.I
|
|
// Created by: drose (27Mar00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: MatrixDataAttribute::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE MatrixDataAttribute::
|
|
MatrixDataAttribute() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: MatrixDataAttribute::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE MatrixDataAttribute::
|
|
MatrixDataAttribute(const LMatrix4f &value) :
|
|
VectorDataAttribute<LMatrix4f, LMatrix4f>(value)
|
|
{
|
|
}
|