ilda 0.2.0

A library for reading ILDA laser projection display files.
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright (c) 2015 Brandon Thomas <bt@brand.io>
extern crate ilda;

use ilda::parser::read_file;

pub fn main() {
  let result = read_file("./examples/files/ildatest.ild").ok().unwrap();
  println!("{:?}", result);
}