You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
345 B
JavaScript
12 lines
345 B
JavaScript
![]()
11 years ago
|
|
||
|
define(['cv_utils'], function(CVUtils){
|
||
|
describe('imageRef', function() {
|
||
|
it('gets the image Reference for a coordinate', function() {
|
||
|
var res = CVUtils.imageRef(1, 2);
|
||
|
expect(res.x).to.equal(1);
|
||
|
expect(res.y).to.equal(2);
|
||
|
expect(res.toVec2()[0]).to.equal(1);
|
||
|
});
|
||
|
});
|
||
|
});
|