Add commented out constuctors
This commit is contained in:
parent
ae9112452a
commit
20a1596cf2
1 changed files with 10 additions and 1 deletions
|
@ -61,13 +61,22 @@ pub trait BooleanVector {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait Vector2<T> {
|
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 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;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue