diff --git a/js/ops/Boundary.js b/js/ops/Boundary.js index 3aa66be..731c74a 100644 --- a/js/ops/Boundary.js +++ b/js/ops/Boundary.js @@ -229,7 +229,7 @@ define( function( require ) { } } ); - Poolable.mixin( Boundary, { + Poolable.mixInto( Boundary, { constructorDuplicateFactory: function( pool ) { return function( halfEdges ) { if ( pool.length ) { diff --git a/js/ops/BoundsIntersection.js b/js/ops/BoundsIntersection.js index 4d15ac7..6deacb6 100644 --- a/js/ops/BoundsIntersection.js +++ b/js/ops/BoundsIntersection.js @@ -318,7 +318,7 @@ define( function( require ) { } } ); - Poolable.mixin( BoundsIntersection, { + Poolable.mixInto( BoundsIntersection, { constructorDuplicateFactory: function( pool ) { return function( a, b, atMin, atMax, btMin, btMax, aMin, aMax, bMin, bMax ) { if ( pool.length ) { diff --git a/js/ops/Edge.js b/js/ops/Edge.js index ec2e6e9..2530187 100644 --- a/js/ops/Edge.js +++ b/js/ops/Edge.js @@ -119,7 +119,7 @@ define( function( require ) { } } ); - Poolable.mixin( Edge, { + Poolable.mixInto( Edge, { constructorDuplicateFactory: function( pool ) { return function( segment, startVertex, endVertex ) { if ( pool.length ) { diff --git a/js/ops/Face.js b/js/ops/Face.js index afa8a81..dbbb1c8 100644 --- a/js/ops/Face.js +++ b/js/ops/Face.js @@ -119,7 +119,7 @@ define( function( require ) { } } ); - Poolable.mixin( Face, { + Poolable.mixInto( Face, { constructorDuplicateFactory: function( pool ) { return function( boundary ) { if ( pool.length ) { diff --git a/js/ops/HalfEdge.js b/js/ops/HalfEdge.js index 2a07dec..7d86f88 100644 --- a/js/ops/HalfEdge.js +++ b/js/ops/HalfEdge.js @@ -174,7 +174,7 @@ define( function( require ) { } } ); - Poolable.mixin( HalfEdge, { + Poolable.mixInto( HalfEdge, { constructorDuplicateFactory: function( pool ) { return function( edge, isReversed ) { if ( pool.length ) { diff --git a/js/ops/Loop.js b/js/ops/Loop.js index faa96b2..5cf537c 100644 --- a/js/ops/Loop.js +++ b/js/ops/Loop.js @@ -75,7 +75,7 @@ define( function( require ) { } } ); - Poolable.mixin( Loop, { + Poolable.mixInto( Loop, { constructorDuplicateFactory: function( pool ) { return function( shapeId ) { if ( pool.length ) { diff --git a/js/ops/Vertex.js b/js/ops/Vertex.js index 0e124b7..2ea5f85 100644 --- a/js/ops/Vertex.js +++ b/js/ops/Vertex.js @@ -145,7 +145,7 @@ define( function( require ) { } } ); - Poolable.mixin( Vertex, { + Poolable.mixInto( Vertex, { constructorDuplicateFactory: function( pool ) { return function( point ) { if ( pool.length ) {