Go to file
q3k 3b8f855ff0 Fix qplayvid desync due to losing some samples during resampling.
See bc8f978a5e logmessage.
2013-05-04 13:18:13 +02:00
Modules Add missing FindSwscale.cmake 2012-04-13 23:00:01 +01:00
examples Merge pull request #2 from macpod/master 2013-02-05 19:03:05 -08:00
include Implement Canny edge detector tracing 2011-03-12 23:28:14 +01:00
libol Merge pull request #2 from macpod/master 2013-02-05 19:03:05 -08:00
output adding static to jack client name string to put it in .rodata section in case hector ever wants to run this from a pic10f200 2013-02-05 21:33:00 -05:00
python Add missing config.pxi.in (whoops) 2013-02-06 00:08:43 +00:00
test_patterns Initial commit 2010-11-24 02:10:10 +01:00
tools Fix qplayvid desync due to losing some samples during resampling. 2013-05-04 13:18:13 +02:00
.gitignore Add *.pyc to .gitignore 2011-03-12 19:22:43 +01:00
CMakeLists.txt Allow builds without tracer (for non-x86) 2013-01-26 14:48:25 +00:00
README.txt Update README to point to the wiki 2013-02-06 02:57:45 +00:00

README.txt

This project is now hosted on GitHub, so your best bet for documentation is
the wiki. You'll find it here:

https://github.com/marcan/openlase/wiki

Old README contents:

No documentation for now, sorry! But there are a few examples. You'll want to
read the blog post here:

http://marcansoft.com/blog/2010/11/openlase-open-realtime-laser-graphics/

Please drop me a line if you find any of this useful or you have suggestions!

TODO/bugs:

- Near/far clipping in 3D. Currently objects behind the camera cause all kinds
  of fail.
- Color interpolation. Right now it just switches colors on vertices.
- RGB support. The basics are there in libol, but I'm sure I'm missing stuff
  since I currently can't test it.
- Unify genfont.py and svg2ild.py. Right now genfont is a horrible
  cut-and-paste-and-hack of svg2ild.
- Better integrate SVGs with libol, and/or deduplicate code. Currently svg2ild
  does a lot of the same stuff tha libol does (rendering and object reordering).
  genfont might be a step forwards, but libol's bezier support needs to improve.
  Also, I need some kind of higher level format for bezier-based laser graphics
  (ILDA is sample-based). On the other hand, it would be nice to make libol's
  ILDA loader optionally split the ILDA stream into objects to merge in with
  the scene more efficiently.
- Optimize
- Tons more that I'm forgetting

Thoughts:
- Develop a "codec" for mkv/whatever to do sample-based laser graphics? So
  playvid can play dedicated laser videos. After all, existing video containers
  already do all of the audio and sync stuff for us, it makes no sense to invent
  a format from scratch. I could even write an mplayer "decoder" that renders
  the image, so it can be previewed.