You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[link(name = "om3d",
vers = "0.1",
author = "Brendan Zabarauskas")];
#[comment = "Linear algebra library for Rust. Incomplete and probably buggy."];
#[crate_type = "lib"];
use std;
mod mat;
mod projection;
mod quat;
mod vec;
src/quat.rs
// ...
import mat::*;
import vec::*;
// ...
src/mat.rs
// ...
import quat::*;
import vec::*;
// ...
src/projection.rs
// ...
import mat::*;
// ...
Any idea what am I doing wrong?
The text was updated successfully, but these errors were encountered:
I'm currently working on my linear algebra library, but I'm having trouble compiling it.
Here's the error I'm getting when I run
$ make all
My directory is layed out like so:
makefile
src/om3d.rc
src/quat.rs
src/mat.rs
src/projection.rs
Any idea what am I doing wrong?
The text was updated successfully, but these errors were encountered: