*** empty log message ***

This commit is contained in:
David Rose 2001-05-01 18:54:54 +00:00
parent b1f0805d02
commit 4ee8acf3eb
5 changed files with 34 additions and 24 deletions

View File

@ -6,26 +6,6 @@
#include <notify.h>
////////////////////////////////////////////////////////////////////
// Function: EggAttributes::Constructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE EggAttributes::
EggAttributes() {
_flags = 0;
}
////////////////////////////////////////////////////////////////////
// Function: EggAttributes::Copy constructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE EggAttributes::
EggAttributes(const EggAttributes &copy) {
(*this) = copy;
}
////////////////////////////////////////////////////////////////////
// Function: EggAttributes::has_normal
// Access: Public

View File

@ -14,6 +14,26 @@
TypeHandle EggAttributes::_type_handle;
////////////////////////////////////////////////////////////////////
// Function: EggAttributes::Constructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
EggAttributes::
EggAttributes() {
_flags = 0;
}
////////////////////////////////////////////////////////////////////
// Function: EggAttributes::Copy constructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
EggAttributes::
EggAttributes(const EggAttributes &copy) {
(*this) = copy;
}
////////////////////////////////////////////////////////////////////
// Function: EggAttributes::Copy assignment operator
// Access: Public
@ -31,6 +51,15 @@ operator = (const EggAttributes &copy) {
return *this;
}
////////////////////////////////////////////////////////////////////
// Function: EggAttributes::Destructor
// Access: Public, Virtual
// Description:
////////////////////////////////////////////////////////////////////
EggAttributes::
~EggAttributes() {
}
////////////////////////////////////////////////////////////////////
// Function: EggAttributes::write

View File

@ -26,9 +26,10 @@
////////////////////////////////////////////////////////////////////
class EXPCL_PANDAEGG EggAttributes {
public:
INLINE EggAttributes();
INLINE EggAttributes(const EggAttributes &copy);
EggAttributes();
EggAttributes(const EggAttributes &copy);
EggAttributes &operator = (const EggAttributes &copy);
virtual ~EggAttributes();
INLINE bool has_normal() const;
INLINE const Normald &get_normal() const;

View File

@ -77,7 +77,7 @@ operator = (const EggVertex &copy) {
////////////////////////////////////////////////////////////////////
// Function: EggVertex::Destructor
// Access: Public
// Access: Public, Virtual
// Description:
////////////////////////////////////////////////////////////////////
EggVertex::

View File

@ -34,7 +34,7 @@ public:
EggVertex();
EggVertex(const EggVertex &copy);
EggVertex &operator = (const EggVertex &copy);
~EggVertex();
virtual ~EggVertex();
INLINE EggVertexPool *get_pool() const;