36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
// Filename: eggPoint.I
|
|
// Created by: drose (15Dec99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggPoint::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE EggPoint::
|
|
EggPoint(const string &name) : EggPrimitive(name) {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggPoint::Copy constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE EggPoint::
|
|
EggPoint(const EggPoint ©) : EggPrimitive(copy) {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggPoint::Copy assignment operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE EggPoint &EggPoint::
|
|
operator = (const EggPoint ©) {
|
|
EggPrimitive::operator = (copy);
|
|
return *this;
|
|
}
|