mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-17 12:12:10 -04:00
*** empty log message ***
This commit is contained in:
parent
b1f0805d02
commit
4ee8acf3eb
@ -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 ©) {
|
||||
(*this) = copy;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: EggAttributes::has_normal
|
||||
// Access: Public
|
||||
|
@ -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 ©) {
|
||||
(*this) = copy;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: EggAttributes::Copy assignment operator
|
||||
// Access: Public
|
||||
@ -31,6 +51,15 @@ operator = (const EggAttributes ©) {
|
||||
return *this;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: EggAttributes::Destructor
|
||||
// Access: Public, Virtual
|
||||
// Description:
|
||||
////////////////////////////////////////////////////////////////////
|
||||
EggAttributes::
|
||||
~EggAttributes() {
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: EggAttributes::write
|
||||
|
@ -26,9 +26,10 @@
|
||||
////////////////////////////////////////////////////////////////////
|
||||
class EXPCL_PANDAEGG EggAttributes {
|
||||
public:
|
||||
INLINE EggAttributes();
|
||||
INLINE EggAttributes(const EggAttributes ©);
|
||||
EggAttributes();
|
||||
EggAttributes(const EggAttributes ©);
|
||||
EggAttributes &operator = (const EggAttributes ©);
|
||||
virtual ~EggAttributes();
|
||||
|
||||
INLINE bool has_normal() const;
|
||||
INLINE const Normald &get_normal() const;
|
||||
|
@ -77,7 +77,7 @@ operator = (const EggVertex ©) {
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: EggVertex::Destructor
|
||||
// Access: Public
|
||||
// Access: Public, Virtual
|
||||
// Description:
|
||||
////////////////////////////////////////////////////////////////////
|
||||
EggVertex::
|
||||
|
@ -34,7 +34,7 @@ public:
|
||||
EggVertex();
|
||||
EggVertex(const EggVertex ©);
|
||||
EggVertex &operator = (const EggVertex ©);
|
||||
~EggVertex();
|
||||
virtual ~EggVertex();
|
||||
|
||||
INLINE EggVertexPool *get_pool() const;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user