Tweak math/qtiplot version 0.9.8.9_8
[dports.git] / math / spar / pkg-descr
1 Spar is a modular math parser that comes with a fully featured text frontend,
2 something like an interactive calculator. It also provides a simple but
3 complete API for C/C++ programmers. This API provide a complete interface to
4 a top down parser that supports: variables, constants, functions, modules and
5 a libc based math library. This math library overrides standard functions with
6 a "custom" version (such as. deg, rad auto conversion, infinite symbol,
7 function domain...). 
8
9 Spar, can be easily extended with modules. A module is a "user" extensions,
10 written in C/C++, to the basic features of the Simple Parser. Here you can
11 find the module definition: is a C structure that contains only few data
12 member: 
13     - module name 
14     - module version 
15     - module description 
16     - a pointer to the module main function 
17
18 The modules are loaded at run-time by the module loader (that is a high level
19 layer of the module manager): you can load your modules, simply, coping theirs
20 paths into the .spar_modules (or any other file, with the -c option).
21
22 WWW: http://spar.sourceforge.net/