*** empty log message ***
This commit is contained in:
parent
61ecfd7e6d
commit
384387acc4
|
|
@ -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))
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue