From c356fbe0b15c51f5ca040fae93afd36405cc5043 Mon Sep 17 00:00:00 2001 From: John Connors Date: Tue, 25 Mar 2008 23:47:45 +0000 Subject: [PATCH] Made dependent on mixamesh --- file-3ds.lisp | 1 + lodematron.asd | 2 +- package.lisp | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/file-3ds.lisp b/file-3ds.lisp index 773a357..98b8d42 100644 --- a/file-3ds.lisp +++ b/file-3ds.lisp @@ -322,6 +322,7 @@ (blue (read-value 'u8 stream))) (format *debug-io* "Red ~F Green ~F Blue ~F" red green blue))) +;; to do -- assume output fn is a funcallable mesh (defun parse-3ds-file (input-file output-fn) "Parse the named file as a 3ds file, making meshbuilding calls to the supplied function." (with-open-file diff --git a/lodematron.asd b/lodematron.asd index 4877e63..0502b72 100644 --- a/lodematron.asd +++ b/lodematron.asd @@ -2,7 +2,7 @@ (in-package :asdf) (asdf:defsystem :lodematron - :depends-on ( :iterate :ieee-floats ) + :depends-on ( :iterate :ieee-floats :mixamesh ) :serial t :components ((:file "package") diff --git a/package.lisp b/package.lisp index 8297d79..ff037db 100644 --- a/package.lisp +++ b/package.lisp @@ -2,7 +2,7 @@ (in-package :cl-user) (defpackage :lodematron - (:use :cl :ieee-floats :iterate)) + (:use :cl :mixamesh :ieee-floats :iterate)) (in-package :lodematron) -- 2.11.4.GIT