Skip to content

SeExpr is a simple expression language that we use to provide artistic control and customization to our core software. We use it for procedural geometry synthesis, image synthesis, simulation control, and much more.

License

redpawfx/SeExpr

 
 

Repository files navigation

=================================================================== For info on using new v3 features and porting your code, see:

http://wdas.github.io/SeExpr/doxygen/html/SeExpr_FAQ.html

===================================================================

SeExpr - An embeddable expression evaluation engine

Super impatient CMake building and installing guide

$ git clone https://github.com/wdas/SeExpr
$ cd SeExpr
$ mkdir build
$ cd build
$ cmake ../
$ make doc      # optional make documentation
$ make install

You can try the test application asciiGraph which is a simple function grapher... e.g.

./asciiGraph "x^3-8*x"

Getting started

Examining the demo applications in src/demo is a great way to see some usage examples of the library. The basic strategy is to subclass the Expression class and implement the methods that describe what extra functions and variables your expression evaluation will need

Be sure to check out the doxygen pages for an API overview: http://wdas.github.io/SeExpr/doxygen/ http://wdas.github.io/SeExpr/doxygen/v1 (for older documentation)

Source code overview

src/
   SeExpr/   Library code
   ui/       User Interface components for editing
   demos/    Demo Applications
   tests/    Regression Tests
   doc/      Doxygen generation

SeExpr Developers

  • Janet Berlin
  • Brent Burley
  • Lawrence Chai
  • Andrew Selle
  • Dan Teece
  • Tom Thompson

Walt Disney Animation Studios

About

SeExpr is a simple expression language that we use to provide artistic control and customization to our core software. We use it for procedural geometry synthesis, image synthesis, simulation control, and much more.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 93.4%
  • Yacc 2.2%
  • CMake 1.9%
  • Python 1.8%
  • Lex 0.4%
  • Slash 0.2%
  • Other 0.1%