63 lines
1.6 KiB
C++
63 lines
1.6 KiB
C++
// Filename: geomTristrip.h
|
|
// Created by: charles (13Jul00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef GEOMTRISTRIP_H
|
|
#define GEOMTRISTRIP_H
|
|
|
|
#include "geom.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : GeomTristrip
|
|
// Description : Triangle Strip Primitive
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA GeomTristrip : public Geom {
|
|
public:
|
|
GeomTristrip() : Geom() { }
|
|
virtual Geom *make_copy() const;
|
|
virtual void print_draw_immediate() const;
|
|
int get_num_tris() const;
|
|
virtual void draw_immediate(GraphicsStateGuardianBase *gsg) const;
|
|
|
|
virtual int get_num_vertices_per_prim() const {
|
|
return 0;
|
|
}
|
|
virtual int get_num_more_vertices_than_components() const {
|
|
return 2;
|
|
}
|
|
virtual bool uses_components() const {
|
|
return true;
|
|
}
|
|
|
|
virtual int get_length(int prim) const {
|
|
return _primlengths[prim];
|
|
}
|
|
|
|
virtual Geom *explode() const;
|
|
virtual PTA_ushort get_tris() const;
|
|
|
|
public:
|
|
static void register_with_read_factory(void);
|
|
static TypedWriteable *make_GeomTristrip(const FactoryParams ¶ms);
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
Geom::init_type();
|
|
register_type(_type_handle, "GeomTristrip",
|
|
Geom::get_class_type());
|
|
}
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#endif // GEOMTRISTRIP_H
|