74 lines
2.0 KiB
C++
74 lines
2.0 KiB
C++
// Filename: builderVertexTempl.h
|
|
// Created by: drose (09Sep97)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef BUILDERVERTEXTEMPL_H
|
|
#define BUILDERVERTEXTEMPL_H
|
|
|
|
#include <pandabase.h>
|
|
|
|
#include "builderTypes.h"
|
|
#include "builderAttribTempl.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
// Class : BuilderVertexTempl
|
|
// Description : The main body of BuilderVertex and BuilderVertexI.
|
|
// This is a template class on each of the four
|
|
// attribute types: vertex coordinates, normal, texture
|
|
// coordinates, and color. See builderVertex.h.
|
|
////////////////////////////////////////////////////////////////////
|
|
template <class VT, class NT, class TT, class CT>
|
|
class BuilderVertexTempl : public BuilderAttribTempl<VT, NT, TT, CT> {
|
|
public:
|
|
typedef VT VType;
|
|
typedef NT NType;
|
|
typedef TT TType;
|
|
typedef CT CType;
|
|
|
|
INLINE BuilderVertexTempl();
|
|
INLINE BuilderVertexTempl(const VType &c);
|
|
INLINE BuilderVertexTempl(const BuilderVertexTempl ©);
|
|
INLINE BuilderVertexTempl &operator = (const BuilderVertexTempl ©);
|
|
|
|
INLINE bool is_valid() const;
|
|
INLINE BuilderVertexTempl &clear();
|
|
|
|
INLINE bool has_coord() const;
|
|
INLINE VType get_coord() const;
|
|
INLINE BuilderVertexTempl &set_coord(const VType &c);
|
|
|
|
INLINE BuilderVertexTempl &set_normal(const NType &c);
|
|
|
|
INLINE bool has_texcoord() const;
|
|
INLINE TType get_texcoord() const;
|
|
INLINE BuilderVertexTempl &set_texcoord(const TType &t);
|
|
|
|
INLINE BuilderVertexTempl &set_color(const CType &c);
|
|
|
|
INLINE BuilderVertexTempl &set_pixel_size(float s);
|
|
|
|
bool operator == (const BuilderVertexTempl &other) const;
|
|
bool operator < (const BuilderVertexTempl &other) const;
|
|
|
|
ostream &output(ostream &out) const;
|
|
|
|
protected:
|
|
VType _coord;
|
|
TType _texcoord;
|
|
};
|
|
|
|
template <class VT, class NT, class TT, class CT>
|
|
INLINE ostream &operator << (ostream &out,
|
|
const BuilderVertexTempl<VT, NT, TT, CT> &vertex) {
|
|
return vertex.output(out);
|
|
}
|
|
|
|
|
|
#include "builderVertexTempl.I"
|
|
|
|
#endif
|