For documentation and examples please visit the Website.

You can render a Forged Thoughts script in your application like this:

```rust use forgedthoughts::prelude::*;

// Create FT let ft = FT::new();

// Compile a script let rc = ft.compilecode("let s = Sphere();".tostring(), "main.ft".to_string);

// Render it into a buffer let mut buffer = ColorBuffer::new(ctx.settings.width as usize, ctx.settings.height as usize);

for i in 0..ctx.settings.renderer.iterations { ft.render(&mut ctx, &mut buffer); }

// Convert the buffer to Vec let out = buffer.tou8vec(); ```