cgmath/src/dim.rs

6 lines
130 B
Rust
Raw Normal View History

2012-11-15 02:22:41 +00:00
use core::cmp::Eq;
pub trait Dimensional<T>: Eq, Index<uint, T> {
static pure fn dim() -> uint;
pure fn to_ptr() -> *T;
}