Changeset 28

Show
Ignore:
Timestamp:
11/23/08 19:12:00 (3 years ago)
Author:
mirko
Message:

man folder

Location:
branches/pdfcube-0.0.3
Files:
1 added
3 modified
1 moved

Legend:

Unmodified
Added
Removed
  • branches/pdfcube-0.0.3/ChangeLog

    r19 r28  
     12008-11-21  Mirko Maischberger  <mirko.maischberger@gmail.com> 
     2        * src/pdfcube.cc: cleand code, fixed code to calc animation steps, 
     3        added program options via boost program options library. Removed 
     4        fog effect from compilation. Added the option to customize colors. 
     5        * pdfcube.1: updated the manpage to reflect changes. 
     6         
    172008-02-28  Karol Sokolowski   <sokoow@gmail.com> 
    28        * src/pdfcube.cc: cleaned code, added code to calc 
    3         animation steps instead of having if hard-coded, added 
     9        animation steps instead of having it hard-coded, added 
    410        backward cube animation and fog. 
    511         
  • branches/pdfcube-0.0.3/README

    r4 r28  
    1 = PDFCube 0.0.2 = 
     1= PDFCube 0.0.3 = 
    22 
    3 Welcome to PDFCube home page. 
     3PDFCube renders PDF presentations with special 3D effects. It adds 
     4eye-candy to your PDF presentations, specially Latex, Beamer and 
     5Prosper ones. 
    46 
    5 PDFCube renders PDF presentations with special 3D effects (the 
    6 omnipresent rotating cube and 5 predefined zoom animations). It adds 
    7 eye-candy to your PDF presentations, even Latex, Beamer and Prosper 
    8 ones. 
    9  
    10  
    11 Right now you get a 3D cube transition pressing "c" and you can zoom 
    12 on 5 areas with "h", "j", "k", "l" and "z" keys or simply switching 
    13 pages with double buffering (no redrawing is visible) and with full 
    14 anti-alias. 
    15  
    16 If you want to program your cube transitions in advance give the page 
    17 you want the transition at on the command line this way (0 means 
    18 between page 1 and page 2, rudimental but will change soon): 
    19  
    20  $ pdfcube file.pdf 0 5 10 
    21  
    22 Rotating cube transition is of great effect when put on a big 
    23 projection screen, so be moderate! One or two cube transitions done 
    24 when changing argument can help understanding that you are switching 
    25 to a new part of the presentation. On the other hand using cube 
    26 transition on every page can give seasickness to your audience ;) 
     7Please see the man page for usage information. 
    278 
    289You'll need an OpenGL DRI enabled Xorg. GPL ATI 9250 driver is OK, 
    29 i've not tested other cards. 
     10i've not tested other cards but had feedback from many users on the 
     11net about a wide range of cards. 
    3012 
    3113This is alpha software (and right now it's a quick hack too), but once 
     
    3416If you want to hack on the code feel free to contact me at 
    3517<mirko.maischberger@gmail.com> either via mail or via jabber. 
    36  
    37 == Future Plans == 
    38  
    39  * Use the strategy pattern to clearly uncouple animations from cube logic. 
    40  
    41  * Add more animations. 
    42  
    43  * Have a language so we can program presentations (cube animations, 
    44    zooming, other transitions). 
    45  
    46  * Read transitions effects from PDF file. 
    4718 
    4819== Dependencies == 
     
    5324 * GtkGlExt (Debian/Ubuntu package: libgtkglext1-dev) 
    5425 * OpenGL (freeglut3-dev) 
     26 * Boost C++ Program Option Library 
    5527 
    5628== Contact information == 
     
    6133 
    6234If you like this project please support by voting on this sites or blogging it: 
    63  * http://digg.com/linux_unix/100allora_released_PDF_Cube_a_PDF_viewer_on_a_cube 
    6435 * http://freshmeat.net/projects/pdfcube 
    65  * http://slashdot.org/bookmark.pl?url='http%3A%2F%2Fcode.100allora.it%2Fpdfcube'&title='PDF%20Cube' 
    6636 * http://www.gnomefiles.org/app.php/PDF_Cube 
    6737 
    68  
     38Happy Hacking 
    6939- Mirko Maischberger 
  • branches/pdfcube-0.0.3/configure.ac

    r26 r28  
    1010dnl ----------------------------------------------- 
    1111 
    12 AM_INIT_AUTOMAKE(pdfcube, 0.0.2) 
     12AM_INIT_AUTOMAKE(pdfcube, 0.0.3) 
    1313 
    1414AC_CONFIG_MACRO_DIR([m4]) 
     
    2727dnl ----------------------------------------------- 
    2828 
    29 # Paths to examplelib stuff: 
    3029AC_LANG_CPLUSPLUS 
    3130 
     
    5049AC_SUBST(poppler_glib_LIBS) 
    5150 
    52 AC_CHECK_HEADERS(GL/glut.h) 
     51AC_CHECK_HEADERS(GL/gl.h) 
     52AC_CHECK_HEADERS(GL/glu.h) 
     53AC_CHECK_HEADERS(GL/glx.h) 
    5354 
    5455AX_BOOST_BASE([1.33.1])