Add commented out constuctors

This commit is contained in:
Brendan Zabarauskas 2012-11-05 13:25:11 +10:00
parent ae9112452a
commit 20a1596cf2

View file

@ -61,13 +61,22 @@ pub trait BooleanVector {
}
pub trait Vector2<T> {
// pub static pure fn new(x: T, y: T) -> self;
// pub static pure fn from_value(value: T) -> self;
}
pub trait Vector3<T> {
// pub static pure fn new(x: T, y: T, z: T) -> self;
// pub static pure fn from_value(value: T) -> self;
fn cross(other: &self) -> self;
}
pub trait Vector4<T> {
// pub static pure fn new(x: T, y: T, z: T, w: T) -> self;
// pub static pure fn from_value(value: T) -> self;
}