mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
default GeomVertexWriter/Reader constructors
This commit is contained in:
parent
437a64207e
commit
8c5504212e
@ -17,6 +17,21 @@
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: GeomVertexReader::Default Constructor
|
||||
// Access: Published
|
||||
// Description: Constructs an invalid GeomVertexReader. You must use
|
||||
// the assignment operator to assign a valid
|
||||
// GeomVertexReader to this object before you can use
|
||||
// it.
|
||||
////////////////////////////////////////////////////////////////////
|
||||
INLINE GeomVertexReader::
|
||||
GeomVertexReader() :
|
||||
_vertex_data(NULL)
|
||||
{
|
||||
initialize();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: GeomVertexReader::Constructor
|
||||
// Access: Published
|
||||
|
@ -59,6 +59,7 @@
|
||||
////////////////////////////////////////////////////////////////////
|
||||
class EXPCL_PANDA GeomVertexReader : public GeomEnums {
|
||||
PUBLISHED:
|
||||
INLINE GeomVertexReader();
|
||||
INLINE GeomVertexReader(const GeomVertexData *vertex_data);
|
||||
INLINE GeomVertexReader(const GeomVertexData *vertex_data,
|
||||
const string &name);
|
||||
|
@ -17,6 +17,18 @@
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: GeomVertexRewriter::Default Constructor
|
||||
// Access: Published
|
||||
// Description: Constructs an invalid GeomVertexRewriter. You must use
|
||||
// the assignment operator to assign a valid
|
||||
// GeomVertexRewriter to this object before you can use
|
||||
// it.
|
||||
////////////////////////////////////////////////////////////////////
|
||||
INLINE GeomVertexRewriter::
|
||||
GeomVertexRewriter() {
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: GeomVertexRewriter::Constructor
|
||||
// Access: Published
|
||||
|
@ -42,6 +42,7 @@
|
||||
////////////////////////////////////////////////////////////////////
|
||||
class EXPCL_PANDA GeomVertexRewriter : public GeomVertexWriter, public GeomVertexReader {
|
||||
PUBLISHED:
|
||||
INLINE GeomVertexRewriter();
|
||||
INLINE GeomVertexRewriter(GeomVertexData *vertex_data);
|
||||
INLINE GeomVertexRewriter(GeomVertexData *vertex_data,
|
||||
const string &name);
|
||||
|
@ -17,6 +17,21 @@
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: GeomVertexWriter::Default Constructor
|
||||
// Access: Published
|
||||
// Description: Constructs an invalid GeomVertexWriter. You must use
|
||||
// the assignment operator to assign a valid
|
||||
// GeomVertexWriter to this object before you can use
|
||||
// it.
|
||||
////////////////////////////////////////////////////////////////////
|
||||
INLINE GeomVertexWriter::
|
||||
GeomVertexWriter() :
|
||||
_vertex_data(NULL)
|
||||
{
|
||||
initialize();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: GeomVertexWriter::Constructor
|
||||
// Access: Published
|
||||
|
@ -72,6 +72,7 @@
|
||||
////////////////////////////////////////////////////////////////////
|
||||
class EXPCL_PANDA GeomVertexWriter : public GeomEnums {
|
||||
PUBLISHED:
|
||||
INLINE GeomVertexWriter();
|
||||
INLINE GeomVertexWriter(GeomVertexData *vertex_data);
|
||||
INLINE GeomVertexWriter(GeomVertexData *vertex_data,
|
||||
const string &name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user