8 lines
156 B
Rust
8 lines
156 B
Rust
use bvh::nalgebra::{Point2, Point3, Vector3};
|
|
|
|
pub type Point2D = Point2<f64>;
|
|
pub type Point = Point3<f64>;
|
|
pub type Vector = Vector3<f64>;
|
|
|
|
pub mod core;
|