mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-05 06:03:24 +01:00
102 lines
2.6 KiB
JavaScript
Executable File
102 lines
2.6 KiB
JavaScript
Executable File
/**
|
|
* @author bhouston / http://exocortex.com
|
|
*/
|
|
|
|
module( "Sphere" );
|
|
|
|
test( "constructor", function() {
|
|
var a = new THREE.Sphere();
|
|
ok( a.center.equals( zero3 ), "Passed!" );
|
|
ok( a.radius == 0, "Passed!" );
|
|
|
|
a = new THREE.Sphere( one3.clone(), 1 );
|
|
ok( a.center.equals( one3 ), "Passed!" );
|
|
ok( a.radius == 1, "Passed!" );
|
|
});
|
|
|
|
test( "copy", function() {
|
|
var a = new THREE.Sphere( one3.clone(), 1 );
|
|
var b = new THREE.Sphere().copy( a );
|
|
|
|
ok( b.center.equals( one3 ), "Passed!" );
|
|
ok( b.radius == 1, "Passed!" );
|
|
|
|
// ensure that it is a true copy
|
|
a.center = zero3;
|
|
a.radius = 0;
|
|
ok( b.center.equals( one3 ), "Passed!" );
|
|
ok( b.radius == 1, "Passed!" );
|
|
});
|
|
|
|
test( "set", function() {
|
|
var a = new THREE.Sphere();
|
|
ok( a.center.equals( zero3 ), "Passed!" );
|
|
ok( a.radius == 0, "Passed!" );
|
|
|
|
a.set( one3, 1 );
|
|
ok( a.center.equals( one3 ), "Passed!" );
|
|
ok( a.radius == 1, "Passed!" );
|
|
});
|
|
|
|
test( "empty", function() {
|
|
var a = new THREE.Sphere();
|
|
ok( a.empty(), "Passed!" );
|
|
|
|
a.set( one3, 1 );
|
|
ok( ! a.empty(), "Passed!" );
|
|
});
|
|
|
|
test( "containsPoint", function() {
|
|
var a = new THREE.Sphere( one3.clone(), 1 );
|
|
|
|
ok( ! a.containsPoint( zero3 ), "Passed!" );
|
|
ok( a.containsPoint( one3 ), "Passed!" );
|
|
});
|
|
|
|
test( "distanceToPoint", function() {
|
|
var a = new THREE.Sphere( one3.clone(), 1 );
|
|
|
|
ok( ( a.distanceToPoint( zero3 ) - 0.7320 ) < 0.001, "Passed!" );
|
|
ok( a.distanceToPoint( one3 ) === -1, "Passed!" );
|
|
});
|
|
|
|
test( "intersectsSphere", function() {
|
|
var a = new THREE.Sphere( one3.clone(), 1 );
|
|
var b = new THREE.Sphere( zero3.clone(), 1 );
|
|
var c = new THREE.Sphere( zero3.clone(), 0.25 );
|
|
|
|
ok( a.intersectsSphere( b ) , "Passed!" );
|
|
ok( ! a.intersectsSphere( c ) , "Passed!" );
|
|
});
|
|
|
|
test( "clampPoint", function() {
|
|
var a = new THREE.Sphere( one3.clone(), 1 );
|
|
|
|
ok( a.clampPoint( new THREE.Vector3( 1, 1, 3 ) ).equals( new THREE.Vector3( 1, 1, 2 ) ), "Passed!" );
|
|
ok( a.clampPoint( new THREE.Vector3( 1, 1, -3 ) ).equals( new THREE.Vector3( 1, 1, 0 ) ), "Passed!" );
|
|
});
|
|
|
|
test( "getBoundingBox", function() {
|
|
var a = new THREE.Sphere( one3.clone(), 1 );
|
|
|
|
ok( a.getBoundingBox().equals( new THREE.Box3( zero3, two3 ) ), "Passed!" );
|
|
|
|
a.set( zero3, 0 )
|
|
ok( a.getBoundingBox().equals( new THREE.Box3( zero3, zero3 ) ), "Passed!" );
|
|
});
|
|
|
|
test( "applyMatrix4", function() {
|
|
var a = new THREE.Sphere( one3.clone(), 1 );
|
|
|
|
var m = new THREE.Matrix4().makeTranslation( 1, -2, 1 );
|
|
|
|
ok( a.clone().applyMatrix4( m ).getBoundingBox().equals( a.getBoundingBox().applyMatrix4( m ) ), "Passed!" );
|
|
});
|
|
|
|
test( "translate", function() {
|
|
var a = new THREE.Sphere( one3.clone(), 1 );
|
|
|
|
a.translate( one3.clone().negate() );
|
|
ok( a.center.equals( zero3 ), "Passed!" );
|
|
});
|