*** empty log message ***

This commit is contained in:
David Rose 2001-04-30 17:59:41 +00:00
parent 61ecfd7e6d
commit 384387acc4
3 changed files with 7 additions and 1 deletions

View File

@ -587,7 +587,7 @@ transpose(const FLOATNAME(LMatrix3) &a) {
#define MATRIX3_DETERMINANT(mat) \
( (mat)._00 * DET2((mat)._11,(mat)._12,(mat)._21,(mat)._22) \
-(mat)._01 * DET2((mat)._10,(mat)._12,(mat)._20,(mat)._22) \
+(mat)._01 * DET2((mat)._10,(mat)._11,(mat)._20,(mat)._21))
+(mat)._02 * DET2((mat)._10,(mat)._11,(mat)._20,(mat)._21))
////////////////////////////////////////////////////////////////////

View File

@ -17,6 +17,11 @@
#define TARGET lwo-scan
#define LOCAL_LIBS lwo progbase
#define OTHER_LIBS \
linmath:c panda:m \
express:c pandaexpress:m \
dtoolutil:c dconfig:c dtoolconfig:m dtool:m pystub
#define SOURCES \
lwoScan.cxx lwoScan.h

View File

@ -73,6 +73,7 @@ handle_args(ProgramBase::Args &args) {
int
main(int argc, char *argv[]) {
init_liblwo();
LwoScan prog;
prog.parse_command_line(argc, argv);
prog.run();