*** empty log message ***

This commit is contained in:
David Rose 2001-04-27 01:54:11 +00:00
parent b8864af39e
commit 3b874d38e6
4 changed files with 7 additions and 3 deletions

View File

@ -3,6 +3,7 @@
#define LOCAL_LIBS \ #define LOCAL_LIBS \
progbase progbase
#define OTHER_LIBS \ #define OTHER_LIBS \
parametrics:c collide:c chan:c char:c switchnode:c \
cull:c loader:c egg:c sgraphutil:c sgattrib:c \ cull:c loader:c egg:c sgraphutil:c sgattrib:c \
sgraph:c pnmimagetypes:c \ sgraph:c pnmimagetypes:c \
graph:c putil:c linmath:c express:c panda:m pandaexpress:m \ graph:c putil:c linmath:c express:c panda:m pandaexpress:m \

View File

@ -12,6 +12,7 @@
#include "fltHeader.h" #include "fltHeader.h"
#include <luse.h> #include <luse.h>
#include <vector_int.h>
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// Class : FltMeshPrimitive // Class : FltMeshPrimitive
@ -29,7 +30,7 @@ public:
PT_polygon = 4, PT_polygon = 4,
}; };
typedef vector<int> Vertices; typedef vector_int Vertices;
PrimitiveType _primitive_type; PrimitiveType _primitive_type;
Vertices _vertices; Vertices _vertices;

View File

@ -4,7 +4,9 @@
#define LOCAL_LIBS fltegg flt lwoegg lwo converter pandatoolbase #define LOCAL_LIBS fltegg flt lwoegg lwo converter pandatoolbase
#define OTHER_LIBS \ #define OTHER_LIBS \
egg2sg:c builder:c egg:c pandaegg:m \ egg2sg:c builder:c egg:c pandaegg:m \
mathutil:c linmath:c putil:c express:c panda:m dtoolconfig dtool mathutil:c linmath:c putil:c panda:m \
express:c pandaexpress:m \
dtoolconfig dtool
#define UNIX_SYS_LIBS \ #define UNIX_SYS_LIBS \
m m

View File

@ -10,7 +10,7 @@
#include <dconfig.h> #include <dconfig.h>
ConfigureDecl(config_ptloader, EXPCL_PANDAEGG, EXPTP_PANDAEGG); ConfigureDecl(config_ptloader, EXPCL_PTLOADER, EXPTP_PTLOADER);
extern EXPCL_PTLOADER void init_libptloader(); extern EXPCL_PTLOADER void init_libptloader();