| 123456789101112131415161718192021222324252627282930313233 |
- /**
- * @author TristanVALCKE / https://github.com/Itee
- */
- /* global QUnit */
- import { ShapeUtils } from '../../../../src/extras/ShapeUtils';
- export default QUnit.module( 'Extras', () => {
- QUnit.module( 'ShapeUtils', () => {
- // PUBLIC STUFF
- QUnit.todo( "area", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- QUnit.todo( "isClockWise", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- QUnit.todo( "triangulateShape", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- } );
- } );
|