This is just some FunCAD documentation that I am working on. This project is work in progress.

FunCAD Download

Currently, there is no rigorous versioning going on with the FunCAD executable. The latest version sitting in my executable directory is available for download. This version is compiled on a Kubuntu 710 (Fiesty Fawn) Linux distribution. Once you download it, run the ldd FunCAD. command to see how library loading is going. For me ldd FunCAD results in the following:

    prompt> ldd FunCAD
        linux-gate.so.1 =>  (0xffffe000)
        libGL.so.1 => /usr/lib/libGL.so.1 (0xb7e97000)
        libGLU.so.1 => /usr/lib/libGLU.so.1 (0xb7e14000)
        libglut.so.3 => /usr/lib/libglut.so.3 (0xb7de0000)
        libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7dbb000)
        libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7c71000)
        libXext.so.6 => /usr/lib/libXext.so.6 (0xb7c63000)
        libX11.so.6 => /usr/lib/libX11.so.6 (0xb7b72000)
        libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7b5a000)
        libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7b56000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7a62000)
        libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb7a57000)
        /lib/ld-linux.so.2 (0xb7f4c000)
        libXau.so.6 => /usr/lib/libXau.so.6 (0xb7a54000)
        libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xb7a4f000)
								
The key thing is to ensure that you have some OpenGL graphics library available -- libGLU.so and libGL.so. You will need the glut library (libglut.so.3) as well. If you want any level of decent responsiveness, it necessary to have an OpenGL library that directly interfaces to a graphics accelerator.


Copyright (c) 2005 by Wayne C. Gramlich All rights reserved.