romange / listfile

List file repository

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

We have prepared a simple demo containing a list file writer and usage of pprint to read the file

# build things
./configure
cd build
make -j pprint points

# generate random points and display them
TMP=`mktemp`; ./points > $TMP && ./pprint $TMP

# generate random points and display only those within the [0,0,3,3] rectangle
TMP=`mktemp`; ./points > $TMP && ./pprint $TMP -where '0 <= x && x <= 3 && 0 <= y && y <= 3'

About

List file repository

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 96.6%Language:C 1.5%Language:CMake 1.3%Language:Yacc 0.3%Language:Lex 0.2%