e2r 0.2.0

experimental rendering engine in rust
Documentation
use interface::i_shape::IShape;
use interface::i_comparable::IComparableError;

use implement::math::ray::Ray3;
use implement::math::plane::Plane;

use implement::math::mat::Mat3x1;

#[test]
fn test_intersect_ray_plane() {
    //Ray Plane intersection
    {
        let a = Ray3::init( &[ 5f64, 5f64, 5f64 ], &[ -1f64, -1f64, -1f64 ] );
        let b = Plane::init( &[ 1f64, 1f64, 1f64 ], &[ 0f64, 1f64, 0f64 ] );
        match a.get_intersect( &b ) {
            ( true, Some(loc) ) => {
                assert!( loc.is_equal( &Mat3x1 { _val: [ 1f64, 1f64, 1f64 ] }, 0.0001f64 ).unwrap() );
            },
            _ => panic!("unexpected result for ray sphere intersection" ),
        }
    }

    //Ray Plane no intersection, plane normal and ray dir same direction
    {
        let a = Ray3::init( &[ 0f64, 0f64, 0f64 ], &[ 1f64, 1f64, 1f64 ] );
        let b = Plane::init( &[ 1f64, 1f64, 1f64 ], &[ 0f64, 1f64, 0f64 ] );
        match a.get_intersect( &b ) {
            ( false, None ) => (),
            _ => panic!("unexpected result for ray sphere no intersection" ),
        }
    }

    //Ray Plane no intersection, coplanar
    {
        let a = Ray3::init( &[ 5f64, 5f64, 5f64 ], &[ 1f64, 0f64, 1f64 ] );
        let b = Plane::init( &[ 1f64, 1f64, 1f64 ], &[ 0f64, 1f64, 0f64 ] );
        match a.get_intersect( &b ) {
            ( false, None ) => (),
            _ => panic!("unexpected result for ray sphere no intersection" ),
        }
    }

    //Ray Plane intersection, coplanar
    {
        let a = Ray3::init( &[ 1f64, 1f64, 1f64 ], &[ 1f64, 0f64, 1f64 ] );
        let b = Plane::init( &[ 1f64, 1f64, 1f64 ], &[ 0f64, 1f64, 0f64 ] );
        match a.get_intersect( &b ) {
            ( true, Some(loc) ) => {
                assert!( loc.is_equal( &a._ori, 0.0001f64 ).unwrap() );
            },
            _ => panic!("unexpected result for ray sphere intersection" ),
        }
    }
}