conspire 0.7.0

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
mod base;
mod from;

use crate::geometry::Coordinate;

#[derive(Clone, Debug, PartialEq)]
pub struct Ray<const D: usize> {
    origin: Coordinate<D>,
    direction: Coordinate<D>,
}