26 lines
775 B
Plaintext
26 lines
775 B
Plaintext
// Filename: vec3DataAttribute.I
|
|
// Created by: drose (27Mar00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: Vec3DataAttribute::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE Vec3DataAttribute::
|
|
Vec3DataAttribute() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: Vec3DataAttribute::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE Vec3DataAttribute::
|
|
Vec3DataAttribute(const LVecBase3f &value) :
|
|
VectorDataAttribute<LPoint3f, LMatrix4f>(value)
|
|
{
|
|
}
|
|
|