Manta Interactive Ray Tracer Development Mailing List

Text archives Help


Re: [Manta] r1836 - trunk/SwigInterface


Chronological Thread 
  • From: Chems Touati <chems@sci.utah.edu>
  • To: Solomon Boulos <boulos@cs.utah.edu>
  • Cc: MANTA <manta@sci.utah.edu>
  • Subject: Re: [Manta] r1836 - trunk/SwigInterface
  • Date: Thu, 8 Nov 2007 10:40:24 -0700

Hello,

I've been pleased with iShowU lately.  Much more flexible than Snapz IMHO.  

It only runs when launched (Snapz Pro is always running), and it offers a nice UI for on-the-fly video compression as well.  Plus, Leopard support already for $20.

http://www.shinywhitebox.com/home/home.html

=)

For the MTV generation.....check the music video:

http://www.shinywhitebox.com/home/assets/iShowU%20Quickly%20(SD).mov


Regards,

//cheMs
-----------------------------------------------------------------------
Chems Touati
Producer and Motion Graphics Designer
Visual Supercomputing Center
chems@sci.utah.edu
801.581.4772

SCI Institute, University of Utah
http://www.sci.utah.edu





On Nov 7, 2007, at 9:50 PM, Solomon Boulos wrote:

If you're on a mac, just get Snapz Pro X from Ambrosia Software for $69. It's probably a lot better than any code from someone on the web and you can then capture your cursor and other info.

On Nov 7, 2007, at 8:53 PM, Abe Stephens wrote:

Note, it's necessary to run these scripts out of the SwigInterface/ directory rather than the lib/ directory due to dependencies on other scripts.

source bin/pythonpath.csh
python ../SwigInterface/runwxmanta.py

I just found some code to stream frames from GL directly into quicktime, so the next time I need to make a movie in Manta I will probably add that feature to the GUI.

Abe

On Nov 7, 2007, at 9:48 PM, abe@sci.utah.edu wrote:

Author: abe
Date: Wed Nov  7 21:48:32 2007
New Revision: 1836

Modified:
 trunk/SwigInterface/CMakeLists.txt
Log:

Fixed cyclic re-export error on Leopard for wxManta interface.

M    SwigInterface/CMakeLists.txt


Modified: trunk/SwigInterface/CMakeLists.txt
==============================================================================
--- trunk/SwigInterface/CMakeLists.txt (original)
+++ trunk/SwigInterface/CMakeLists.txt Wed Nov  7 21:48:32 2007
@@ -56,6 +56,7 @@
# Manta Interface.
SET_SOURCE_FILES_PROPERTIES(mantainterface.i PROPERTIES CPLUSPLUS ON)
SET_SOURCE_FILES_PROPERTIES(mantainterface.i PROPERTIES SWIG_FLAGS "${MANTA_SWIG_FLAGS}")
+
SWIG_ADD_MODULE(mantainterface python mantainterface.i manta.cc manta.h)

SWIG_LINK_LIBRARIES(mantainterface
@@ -67,6 +68,12 @@
 -lm)
ADD_DEPENDENCIES(_mantainterface ${MANTA_TARGET_LINK_LIBRARIES})

+IF (APPLE_LEOPARD_LD)
+  SET_TARGET_PROPERTIES(_mantainterface PROPERTIES
+    LINK_FLAGS "-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib"
+    )
+ENDIF (APPLE_LEOPARD_LD)
+
############################################################
# Manta Runtime.
SET_SOURCE_FILES_PROPERTIES(manta.i PROPERTIES CPLUSPLUS ON)
@@ -94,6 +101,14 @@
 ${X11_LIBRARIES}
 -lm)
ADD_DEPENDENCIES(_manta ${MANTA_TARGET_LINK_LIBRARIES})
+
+
+IF (APPLE_LEOPARD_LD)
+  SET_TARGET_PROPERTIES(_manta PROPERTIES
+    LINK_FLAGS "-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib"
+    )
+ENDIF (APPLE_LEOPARD_LD)
+

# X11 Interface.
PYTHON_POST_BUILD_COPY(runmanta.py)





Archive powered by MHonArc 2.6.16.

Top of page