Euc

crates.io crates.io

Utah teapot, rendered with Euc

Example

```rust struct Example;

impl Pipeline for Example { type Vertex = [f32; 2]; type VsOut = (); type Pixel = [u8; 4];

// Vertex shader
fn vert(&self, pos: &Self::Vertex) -> ([f32; 3], Self::VsOut) {
    ([pos[0], pos[1], 0.0], ())
}

// Fragment shader
fn frag(&self, _: &Self::VsOut) -> Self::Pixel {
    [255, 0, 0, 255] // Red
}

}

fn main() { let mut color = Buffer2d::new([640, 480], [0; 4]); let mut depth = Buffer2d::new([640, 480], 1.0);

Example.draw::<Triangles<_>, _>(
    &[
        [-1.0, -1.0],
        [ 1.0, -1.0],
        [ 0.0,  1.0],
    ],
    &mut color,
    &mut depth,
);

} ```

See examples/ for more code examples.

What is euc?

euc is a versatile, simple to use crate that allows 3D rendering on the CPU. It has a portable, compact design that makes it perfect for prototyping ideas, unit testing, or even simple realtime applications. euc is currently under active development.

Why?

Coordinate System

Where possible, euc tries to use a coordinate system similar in nature to OpenGL. If you're used to OpenGL, you'll have no trouble working with euc.

Release Mode

Cargo, by default, compiles Rust code in debug mode. In this mode, very few optimisations are made upon the code, and as a result the performance of software rendering tends to suffer. To experience this project with good performance, make sure to compile with the --release flag.

no_std

euc can be compiled on platforms that lack standard library support. This makes it ideal for rendering 3D graphics on embedded devices. You can enable no_std support by disabling the default features and enabling the libm feature in your Cargo.toml file like so:

toml [dependencies] euc = { version = "x.y.z", default-features = false, features = ["libm"] }

Goals

Non-Goals

License

euc is distributed under either of:

at the disgression of the user.