language
stringclasses
1 value
owner
stringlengths
2
15
repo
stringlengths
2
21
sha
stringlengths
45
45
message
stringlengths
7
36.3k
path
stringlengths
1
199
patch
stringlengths
15
102k
is_multipart
bool
2 classes
Other
mrdoob
three.js
56f15221ffe9b24f7ecd4cf458bd1432e79b883e.json
Render shadows double-sided A clipped mesh is typically not a closed mesh.
examples/webgl_clipping.html
@@ -106,6 +106,7 @@ renderer = new THREE.WebGLRenderer(); renderer.shadowMap.enabled = true; + renderer.shadowMap.renderSingleSided = false; renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); window.addEventListener( 'resize', onWi...
false
Other
mrdoob
three.js
90e6001a0be1154ac0b76b33c4b3898b6096c2cf.json
Add map/alphaMap support to distanceRGBA shader
examples/webgl_shadowmap_pointlight.html
@@ -51,23 +51,22 @@ scene = new THREE.Scene(); scene.add( new THREE.AmbientLight( 0x222233 ) ); - // Lights + // lights function createLight( color ) { var pointLight = new THREE.PointLight( color, 1, 30 ); pointLight.castShadow = true; pointLight.shadow.camera.near = 1; ...
true
Other
mrdoob
three.js
90e6001a0be1154ac0b76b33c4b3898b6096c2cf.json
Add map/alphaMap support to distanceRGBA shader
src/renderers/shaders/ShaderLib.js
@@ -190,9 +190,12 @@ var ShaderLib = { distanceRGBA: { - uniforms: { - lightPos: { value: new Vector3() } - }, + uniforms: UniformsUtils.merge( [ + UniformsLib.common, + { + lightPos: { value: new Vector3() } + } + ] ), vertexShader: ShaderChunk.distanceRGBA_vert, fragmentShader: ShaderChun...
true
Other
mrdoob
three.js
90e6001a0be1154ac0b76b33c4b3898b6096c2cf.json
Add map/alphaMap support to distanceRGBA shader
src/renderers/shaders/ShaderLib/distanceRGBA_frag.glsl
@@ -3,12 +3,21 @@ varying vec4 vWorldPosition; #include <common> #include <packing> +#include <uv_pars_fragment> +#include <map_pars_fragment> +#include <alphamap_pars_fragment> #include <clipping_planes_pars_fragment> void main () { #include <clipping_planes_fragment> + vec4 diffuseColor = vec4( 1.0 ); +...
true
Other
mrdoob
three.js
90e6001a0be1154ac0b76b33c4b3898b6096c2cf.json
Add map/alphaMap support to distanceRGBA shader
src/renderers/shaders/ShaderLib/distanceRGBA_vert.glsl
@@ -1,12 +1,15 @@ varying vec4 vWorldPosition; #include <common> +#include <uv_pars_vertex> #include <morphtarget_pars_vertex> #include <skinning_pars_vertex> #include <clipping_planes_pars_vertex> void main() { + #include <uv_vertex> + #include <skinbase_vertex> #include <begin_vertex> #include <morp...
true
Other
mrdoob
three.js
09d75ad29ad2461f0bbc3d99993a93ed7733ab8f.json
Add comment for AnimationCurve-less node
examples/js/loaders/FBXLoader.js
@@ -2154,6 +2154,41 @@ if ( curveNode.attr === 'R' ) { var curves = curveNode.curves; + + // Seems like some FBX files have AnimationCurveNode + // which doesn't have any connected AnimationCurve. + // Setting animation parameter for them here. + + if ( curves.x === null ) { + + curves.x = { ...
false
Other
mrdoob
three.js
9f2d1aea97ece8143e8d576ca72854a0c51a3057.json
Add SkinnedMesh check for .bones animation path
examples/js/exporters/GLTFExporter.js
@@ -904,9 +904,17 @@ THREE.GLTFExporter.prototype = { var trackNode = THREE.PropertyBinding.findNode( root, trackBinding.nodeName ); var trackProperty = PATH_PROPERTIES[ trackBinding.propertyName ]; - if ( trackBinding.objectName === 'bones' && trackNode.isSkinnedMesh === true ) { + if ( trackBinding....
false
Other
mrdoob
three.js
7f648bbcd4096090aaff65d8b46b9678ac310b73.json
Remove unnessecary assignement https://lgtm.com/projects/g/mrdoob/three.js/snapshot/88225c1a6d4bcdcf2ab408a972a8319ff38f4f53/files/examples/js/loaders/FBXLoader.js#V1099
examples/js/loaders/FBXLoader.js
@@ -1098,8 +1098,6 @@ } polygonIndex ++; - - endOfFace = false; faceLength = 0; // reset arrays for the next face
false
Other
mrdoob
three.js
027e853b4c989718c2ab48fe233a4bf5399b24d9.json
Add findBoneByName() to Skeleton
src/animation/PropertyBinding.js
@@ -219,25 +219,7 @@ Object.assign( PropertyBinding, { // search into skeleton bones. if ( root.skeleton ) { - var searchSkeleton = function ( skeleton ) { - - for ( var i = 0; i < skeleton.bones.length; i ++ ) { - - var bone = skeleton.bones[ i ]; - - if ( bone.name === nodeName ) { - - retur...
true
Other
mrdoob
three.js
027e853b4c989718c2ab48fe233a4bf5399b24d9.json
Add findBoneByName() to Skeleton
src/objects/Skeleton.js
@@ -152,6 +152,24 @@ Object.assign( Skeleton.prototype, { return new Skeleton( this.bones, this.boneInverses ); + }, + + findBoneByName: function ( name ) { + + for ( var i = 0, il = this.bones.length; i < il; i ++ ) { + + var bone = this.bones[ i ]; + + if ( bone.name === name ) { + + return bone; + + ...
true
Other
mrdoob
three.js
aaaf5454c773b6849117455ef72deee0ac254375.json
fix world position
examples/js/nodes/NodeMaterial.js
@@ -189,12 +189,10 @@ THREE.NodeMaterial.prototype.build = function() { if ( this.requestAttribs.worldPosition ) { - // for future update replace from the native "varying vec3 vWorldPosition" for optimization - this.addVertexPars( 'varying vec3 vWPosition;' ); this.addFragmentPars( 'varying vec3 vWPosition...
false
Other
mrdoob
three.js
386dd4efbfd773a9d335df4cf1a391bd8fd63083.json
Name inner function of IIFE
src/animation/PropertyBinding.js
@@ -143,7 +143,7 @@ Object.assign( PropertyBinding, { var supportedObjectNames = [ 'material', 'materials', 'bones' ]; - return function ( trackName ) { + return function parseTrackName( trackName ) { var matches = trackRe.exec( trackName );
true
Other
mrdoob
three.js
386dd4efbfd773a9d335df4cf1a391bd8fd63083.json
Name inner function of IIFE
src/loaders/JSONLoader.js
@@ -525,7 +525,7 @@ Object.assign( JSONLoader.prototype, { } - return function ( json, texturePath ) { + return function parse( json, texturePath ) { if ( json.data !== undefined ) {
true
Other
mrdoob
three.js
386dd4efbfd773a9d335df4cf1a391bd8fd63083.json
Name inner function of IIFE
src/math/Math.js
@@ -20,7 +20,7 @@ var _Math = { } - return function () { + return function generateUUID() { var d0 = Math.random() * 0xffffffff | 0; var d1 = Math.random() * 0xffffffff | 0;
true
Other
mrdoob
three.js
28f5d746b861edf65e1878e4ac881367c1f56967.json
Apply the review comment to GLTFExporter
examples/js/exporters/GLTFExporter.js
@@ -798,34 +798,40 @@ THREE.GLTFExporter.prototype = { var target = {}; + var warned = false; + for ( var attributeName in geometry.morphAttributes ) { // glTF 2.0 morph supports only POSITION/NORMAL/TANGENT. - // - // @TODO TANGENT support + // Three.js doesn't support TANGE...
false
Other
mrdoob
three.js
592014b705d6a7803601cee4d72e917817807431.json
Change colour => color
examples/js/ShaderGodRays.js
@@ -109,7 +109,7 @@ THREE.ShaderGodRays = { // Accumulate samples, making sure we dont walk past the light source. // The check for uv.y < 1 would not be necessary with "border" UV wrap - // mode, with a black border colour. I don't think this is currently + // mode, with a black border color. I d...
false
Other
mrdoob
three.js
d2d34183249121d64c00a4bd2a646576789e37bf.json
Change colour => color
editor/js/libs/tern-threejs/threejs.js
@@ -4424,7 +4424,7 @@ }, "material": { "!type": "+THREE.Material", - "!doc": "An instance of [page:Material], defining the object's appearance. Default is a [page:MeshBasicMaterial] with wireframe mode enabled and randomised colour." + "!doc": "An instance of [page:Materia...
false
Other
mrdoob
three.js
0af653dc9fa62fa9056fa9fbb16c5df7f0403bf9.json
Change colour => color.
examples/webgl_shaders_tonemapping.html
@@ -185,8 +185,8 @@ "float viewDot = abs(dot( normal, viewPosition ));", "viewDot = clamp( pow( viewDot + 0.6, 10.0 ), 0.0, 1.0);", - "vec3 colour = vec3( 0.05, 0.09, 0.13 ) * dirDiffuse;", - "gl_FragColor = vec4( colour, viewDot );", + "vec3 color = vec3( 0.05, 0.09, 0.13 ) * d...
false
Other
mrdoob
three.js
696c849f33abe5cea97f8a5ca9dba320a9fe6bf2.json
Fix secondary missing variable declaration
examples/js/nodes/accessors/CameraNode.js
@@ -140,6 +140,7 @@ THREE.CameraNode.prototype.updateFrame = function( delta ) { case THREE.CameraNode.DEPTH: + var camera = this.camera this.near.number = camera.near; this.far.number = camera.far;
false
Other
mrdoob
three.js
b5dcd1fb299c0297e9d16374fc326072ae49e509.json
Move missplaced variable declaration
examples/js/nodes/accessors/CameraNode.js
@@ -52,11 +52,10 @@ THREE.CameraNode.prototype.setScope = function( scope ) { this.scope = scope; switch ( scope ) { - - var camera = this.camera case THREE.CameraNode.DEPTH: + var camera = this.camera this.near = new THREE.FloatNode( camera ? camera.near : 1 ); this.far = new THREE.FloatNode...
false
Other
mrdoob
three.js
a205beec8b01cdd7e3cbad29f4e18a0d52aeb302.json
Improve lighting and clean up
examples/webgl_loader_3mf.html
@@ -62,30 +62,34 @@ function init() { + renderer = new THREE.WebGLRenderer( { antialias: true } ); + renderer.setClearColor( 0x333333 ); + renderer.setPixelRatio( window.devicePixelRatio ); + renderer.setSize( window.innerWidth, window.innerHeight ); + document.body.appendChild( renderer.domEleme...
false
Other
mrdoob
three.js
a1b201556d6d3763112a0495ea19f0916ceb3321.json
Add onBeforeRender(), onAfterRender()
src/renderers/webgl/plugins/SpritePlugin.js
@@ -182,6 +182,8 @@ function SpritePlugin( renderer, sprites ) { if ( material.visible === false ) continue; + sprite.onBeforeRender( renderer, scene, camera, undefined, material, undefined ); + gl.uniform1f( uniforms.alphaTest, material.alphaTest ); gl.uniformMatrix4fv( uniforms.modelViewMatrix, fals...
false
Other
mrdoob
three.js
9d9fbee78e1fb22e0a128f68e00052a6020e3aaf.json
Define shader name
src/renderers/webgl/plugins/SpritePlugin.js
@@ -260,6 +260,8 @@ function SpritePlugin( renderer, sprites ) { 'precision ' + renderer.getPrecision() + ' float;', + '#define SHADER_NAME ' + 'SpriteMaterial', + 'uniform mat4 modelViewMatrix;', 'uniform mat4 projectionMatrix;', 'uniform float rotation;', @@ -298,6 +300,8 @@ function SpritePlugi...
false
Other
mrdoob
three.js
04468e1e9fbf8fe143d07697f979d6a3b87f75b7.json
add required imports
src/renderers/webvr/WebVRManager.js
@@ -1,6 +1,10 @@ /** * @author mrdoob / http://mrdoob.com/ */ +import { Matrix4 } from '../../math/Matrix4'; +import { Vector4 } from '../../math/Vector4'; +import { ArrayCamera } from '../../cameras/ArrayCamera'; +import { PerspectiveCamera } from '../../cameras/PerspectiveCamera'; function WebVRManager( rende...
false
Other
mrdoob
three.js
c6ec6d3f9d65401bf623eac8ce124da4fbed7094.json
remove references to THREE
src/renderers/webvr/WebVRManager.js
@@ -15,20 +15,20 @@ function WebVRManager( renderer ) { } - var matrixWorldInverse = new THREE.Matrix4(); + var matrixWorldInverse = new Matrix4(); - var standingMatrix = new THREE.Matrix4(); - var standingMatrixInverse = new THREE.Matrix4(); + var standingMatrix = new Matrix4(); + var standingMatrixInverse = n...
false
Other
mrdoob
three.js
a40b7d287bca89bef9f8cb331e041471765bde2e.json
Reset updateRange.count to -1 after updateBuffer
src/renderers/webgl/WebGLAttributes.js
@@ -89,7 +89,7 @@ function WebGLAttributes( gl ) { gl.bufferSubData( bufferType, updateRange.offset * array.BYTES_PER_ELEMENT, array.subarray( updateRange.offset, updateRange.offset + updateRange.count ) ); - updateRange.count = 0; // reset range + updateRange.count = -1; // reset range }
false
Other
mrdoob
three.js
df0fdfd37557b91c923203f229f2fd7eac681e64.json
Add comment for GPUParticleSystem.geometryUpdate
examples/js/GPUParticleSystem.js
@@ -461,6 +461,7 @@ THREE.GPUParticleContainer = function( maxParticles, particleSystem ) { sizeAttribute.updateRange.offset = 0; lifeTimeAttribute.updateRange.offset = 0; + // Use -1 to update the entire buffer, see https://github.com/mrdoob/three.js/pull/11476 positionStartAttribute.updateRange.co...
false
Other
mrdoob
three.js
3a619a826ce2427b824e062acd5da461e44eef7e.json
fix pixel ratio
examples/js/nodes/utils/ResolutionNode.js
@@ -17,9 +17,10 @@ THREE.ResolutionNode.prototype.constructor = THREE.ResolutionNode; THREE.ResolutionNode.prototype.updateFrame = function( delta ) { - var size = this.renderer.getSize(); + var size = this.renderer.getSize(), + pixelRatio = this.renderer.getPixelRatio(); - this.x = size.width; - this.y = size....
false
Other
mrdoob
three.js
883603a32018b7ebaa7413ba0b3626d02322349a.json
Fix unused BoneDics, rootBone and keys
examples/js/loaders/XLoader.js
@@ -1205,8 +1205,6 @@ THREE.XLoader.prototype = { scope.loadingXdata.FrameInfo_Raw[ nowFrameName ].Geometry.groupsNeedUpdate = true; var putBones = []; var BoneInverse = []; - var BoneDics = []; - var rootBone = new THREE.Bone(); if ( scope.loadingXdata.FrameInfo_Raw[ nowFrameName ].BoneInfs != null...
false
Other
mrdoob
three.js
02253acb2206b14a2df58882bf92bf52e03db548.json
Fix undefined XBoneInf
examples/js/loaders/XLoader.js
@@ -1004,7 +1004,7 @@ THREE.XLoader.prototype = { var scope = this; scope.nowReadMode = THREE.XLoader.XfileLoadMode.Weit_init; - scope.BoneInf = new XboneInf(); + scope.BoneInf = new THREE.XLoader.XboneInf(); },
false
Other
mrdoob
three.js
be58df1b0f6f47c7d49a6e2d75fe07ade4326f41.json
Fix unused param line
examples/js/loaders/XLoader.js
@@ -601,7 +601,7 @@ THREE.XLoader.prototype = { }, - endElement: function ( line ) { + endElement: function () { var scope = this; if ( scope.nowReadMode == THREE.XLoader.XfileLoadMode.Mesh ) { @@ -753,7 +753,7 @@ THREE.XLoader.prototype = { }, - beginMeshNormal: function ( line ) { + beginMeshNorma...
false
Other
mrdoob
three.js
2ec3df1ff60793728c314b709dcd22469ed40f80.json
Fix unused scope
examples/js/loaders/XLoader.js
@@ -373,7 +373,6 @@ THREE.XLoader.prototype = { getPlaneStr: function ( _str ) { - var scope = this; var firstDbl = _str.indexOf( '"' ) + 1; var dbl2 = _str.indexOf( '"', firstDbl ); return _str.substr( firstDbl, dbl2 - firstDbl );
false
Other
mrdoob
three.js
faea56c549647019911134368d841d9a8da87d91.json
Fix unused find
examples/js/loaders/XLoader.js
@@ -231,14 +231,12 @@ THREE.XLoader.prototype = { getNextSection: function ( _offset, _start, _end ) { var scope = this; - var find = scope.data.indexOf( "{", _offset ); return [ scope.data.substr( _offset, _start - _offset ).trim(), scope.data.substr( _start + 1, _end - _start - 1 ) ]; }, getNextSec...
false
Other
mrdoob
three.js
cf35b7121ffc72fbf6cd4a347aca6cdfec467248.json
Fix unused baseDir
examples/js/loaders/XLoader.js
@@ -175,7 +175,6 @@ THREE.XLoader.prototype = { parseASCII: function () { var scope = this; - var baseDir = ""; if ( scope.url.lastIndexOf( "/" ) > 0 ) { scope.baseDir = scope.url.substr( 0, scope.url.lastIndexOf( "/" ) + 1 );
false
Other
mrdoob
three.js
f28233f50f476e21d78a6606aa3f768e3bc09f78.json
Fix undefined parseASCII
examples/js/loaders/XLoader.js
@@ -167,7 +167,8 @@ THREE.XLoader.prototype = { parseBinary: function ( data ) { - return parseASCII( String.fromCharCode.apply( null, data ) ); + var scope = this; + return scope.parseASCII( String.fromCharCode.apply( null, data ) ); },
false
Other
mrdoob
three.js
e407213680594f2eda38d81e56239cf63b8211da.json
Fix style issus
examples/js/loaders/XLoader.js
@@ -1,4 +1,3 @@ - /** * @author Jey-en https://github.com/adrs2002 * @@ -21,7 +20,7 @@ * - scene */ -THREE.XLoader = function (manager, Texloader, _zflg) { +THREE.XLoader = function ( manager, Texloader, _zflg ) { this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager; this....
false
Other
mrdoob
three.js
002893a99361a4cfe3e266bf188982e49cc01c78.json
Update GLTFLoader documentation
docs/examples/loaders/GLTFLoader.html
@@ -99,9 +99,9 @@ <h2>Methods</h2> <h3>[method:null load]( [page:String url], [page:Function onLoad], [page:Function onProgress], [page:Function onError] )</h3> <div> [page:String url] — A string containing the path/URL of the <em>.gltf</em> or <em>.glb</em> file.<br /> - [page:Function onLoad] — (optional) A...
false
Other
mrdoob
three.js
2138f8154660b5dc760d598cd01bdf37786f88e5.json
Add try-catch for GLTFBinaryExtension
examples/js/loaders/GLTFLoader.js
@@ -78,7 +78,17 @@ THREE.GLTFLoader = ( function () { if ( magic === BINARY_EXTENSION_HEADER_MAGIC ) { - extensions[ EXTENSIONS.KHR_BINARY_GLTF ] = new GLTFBinaryExtension( data ); + try { + + extensions[ EXTENSIONS.KHR_BINARY_GLTF ] = new GLTFBinaryExtension( data ); + + } catch ( error ) { +...
false
Other
mrdoob
three.js
5f997d3169f1b0d270eea10da9d1cf98ddfc1bcc.json
Apply the review comment to error message
examples/js/loaders/GLTFLoader.js
@@ -1438,7 +1438,7 @@ THREE.GLTFLoader = ( function () { loader.load( resolveURL( bufferDef.uri, options.path ), resolve, undefined, function () { - reject( new Error( 'THREE.GLTFLoader: Failed to load Buffer "' + bufferDef.uri + '".' ) ); + reject( new Error( 'THREE.GLTFLoader: Failed to load buffer "' +...
false
Other
mrdoob
three.js
d58163a5fa8faa477e5c43fc73a40cb48d8866a0.json
Add missings async assert timeout
test/unit/editor/old_to_convert/Serialization.tests.js
@@ -7,6 +7,8 @@ QUnit.module( "Serialization" ); QUnit.test( "Test Serialization", function( assert ) { + assert.timeout( 1000 ); + // setup var editor = new Editor(); var done = assert.async();
true
Other
mrdoob
three.js
d58163a5fa8faa477e5c43fc73a40cb48d8866a0.json
Add missings async assert timeout
test/unit/src/core/BufferGeometry.tests.js
@@ -547,6 +547,8 @@ export default QUnit.module( 'Core', () => { QUnit.test( "fromGeometry/fromDirectGeometry", ( assert ) => { + assert.timeout( 1000 ); + var a = new BufferGeometry(); // BoxGeometry is a bit too simple but works fine in a pinch // var b = new BoxGeometry( 1, 1, 1 );
true
Other
mrdoob
three.js
d58163a5fa8faa477e5c43fc73a40cb48d8866a0.json
Add missings async assert timeout
test/unit/src/core/DirectGeometry.tests.js
@@ -48,6 +48,8 @@ export default QUnit.module( 'Core', () => { QUnit.test( "fromGeometry", ( assert ) => { + assert.timeout( 1000 ); + var a = new DirectGeometry(); var asyncDone = assert.async(); // tell QUnit when we're done with async stuff @@ -237,7 +239,16 @@ export default QUnit.module( 'Core',...
true
Other
mrdoob
three.js
59111f17c3244900fdc407e0d3053b4dee76eab0.json
Build unit tests
test/unit/three.editor.unit.js
@@ -1167,7 +1167,7 @@ option.setTextContent( 'Plane' ); option.onClick( function () { - var geometry = new THREE.PlaneBufferGeometry( 2, 2 ); + var geometry = new THREE.PlaneBufferGeometry( 1, 1, 1, 1 ); var material = new THREE.MeshStandardMaterial(); var mesh = new THREE.Mesh( geometry, material )...
true
Other
mrdoob
three.js
59111f17c3244900fdc407e0d3053b4dee76eab0.json
Build unit tests
test/unit/three.source.unit.js
@@ -4,8 +4,6 @@ (factory()); }(this, (function () { 'use strict'; - console.log("TADA"); - QUnit.module( "Source", () => { var REVISION = '88dev'; @@ -384,35 +382,37 @@ generateUUID: function () { // http://www.broofa.com/Tools/Math.uuid.htm + // Replaced .join with string concatenation (@takahiro...
true
Other
mrdoob
three.js
bb6a1aaafaf366a300178e93bd274f38252dbaa2.json
Add unit tests utils
test/unit/SmartComparer.js
@@ -0,0 +1,210 @@ +// Smart comparison of three.js objects. +// Identifies significant differences between two objects. +// Performs deep comparison. +// Comparison stops after the first difference is found. +// Provides an explanation for the failure. +function SmartComparer() { + 'use strict'; + + // Diagnostic messa...
true
Other
mrdoob
three.js
bb6a1aaafaf366a300178e93bd274f38252dbaa2.json
Add unit tests utils
test/unit/qunit-utils.js
@@ -0,0 +1,331 @@ +// +// Custom QUnit assertions. +// + +QUnit.assert.success = function ( message ) { + + // Equivalent to assert( true, message ); + this.pushResult( { + result: true, + actual: undefined, + expected: undefined, + message: message + } ); + +}; + +QUnit.assert.fail = function ( message ) { + + // ...
true
Other
mrdoob
three.js
7011e96ad34f7dad830d2a1e3a4be3e3799425d9.json
Add textures es6 unit tests
test/unit/src/textures/CanvasTexture.tests.js
@@ -0,0 +1,35 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { CanvasTexture } from '../../../../src/textures/CanvasTexture'; + +export default QUnit.module( 'Textures', () => { + + QUnit.module.todo( 'CanvasTexture', () => { + + // INHERITANCE + QUnit.test( "Extending"...
true
Other
mrdoob
three.js
7011e96ad34f7dad830d2a1e3a4be3e3799425d9.json
Add textures es6 unit tests
test/unit/src/textures/CompressedTexture.tests.js
@@ -0,0 +1,35 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { CompressedTexture } from '../../../../src/textures/CompressedTexture'; + +export default QUnit.module( 'Textures', () => { + + QUnit.module.todo( 'CompressedTexture', () => { + + // INHERITANCE + QUnit.test(...
true
Other
mrdoob
three.js
7011e96ad34f7dad830d2a1e3a4be3e3799425d9.json
Add textures es6 unit tests
test/unit/src/textures/CubeTexture.tests.js
@@ -0,0 +1,42 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { CubeTexture } from '../../../../src/textures/CubeTexture'; + +export default QUnit.module( 'Textures', () => { + + QUnit.module.todo( 'CubeTexture', () => { + + // INHERITANCE + QUnit.test( "Extending", ( as...
true
Other
mrdoob
three.js
7011e96ad34f7dad830d2a1e3a4be3e3799425d9.json
Add textures es6 unit tests
test/unit/src/textures/DataTexture.tests.js
@@ -0,0 +1,35 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { DataTexture } from '../../../../src/textures/DataTexture'; + +export default QUnit.module( 'Textures', () => { + + QUnit.module.todo( 'DataTexture', () => { + + // INHERITANCE + QUnit.test( "Extending", ( as...
true
Other
mrdoob
three.js
7011e96ad34f7dad830d2a1e3a4be3e3799425d9.json
Add textures es6 unit tests
test/unit/src/textures/DepthTexture.tests.js
@@ -0,0 +1,35 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { DepthTexture } from '../../../../src/textures/DepthTexture'; + +export default QUnit.module( 'Textures', () => { + + QUnit.module.todo( 'DepthTexture', () => { + + // INHERITANCE + QUnit.test( "Extending", (...
true
Other
mrdoob
three.js
7011e96ad34f7dad830d2a1e3a4be3e3799425d9.json
Add textures es6 unit tests
test/unit/src/textures/Texture.tests.js
@@ -0,0 +1,65 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Texture } from '../../../../src/textures/Texture'; + +export default QUnit.module( 'Textures', () => { + + QUnit.module.todo( 'Texture', () => { + + // INSTANCING + QUnit.test( "Instancing", ( assert ) => { ...
true
Other
mrdoob
three.js
7011e96ad34f7dad830d2a1e3a4be3e3799425d9.json
Add textures es6 unit tests
test/unit/src/textures/VideoTexture.tests.js
@@ -0,0 +1,35 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { VideoTexture } from '../../../../src/textures/VideoTexture'; + +export default QUnit.module( 'Textures', () => { + + QUnit.module.todo( 'VideoTexture', () => { + + // INHERITANCE + QUnit.test( "Extending", (...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/Bone.tests.js
@@ -0,0 +1,36 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Bone } from '../../../../src/objects/Bone'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'Bone', () => { + + // INHERITANCE + QUnit.test( "Extending", ( assert ) => { + + asser...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/Group.tests.js
@@ -0,0 +1,28 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Group } from '../../../../src/objects/Group'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'Group', () => { + + // INHERITANCE + QUnit.test( "Extending", ( assert ) => { + + as...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/LOD.tests.js
@@ -0,0 +1,72 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { LOD } from '../../../../src/objects/LOD'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'LOD', () => { + + // INHERITANCE + QUnit.test( "Extending", ( assert ) => { + + assert.o...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/LensFlare.tests.js
@@ -0,0 +1,53 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { LensFlare } from '../../../../src/objects/LensFlare'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'LensFlare', () => { + + // INHERITANCE + QUnit.test( "Extending", ( assert ) =...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/Line.tests.js
@@ -0,0 +1,48 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Line } from '../../../../src/objects/Line'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'Line', () => { + + // INHERITANCE + QUnit.test( "Extending", ( assert ) => { + + asser...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/LineLoop.tests.js
@@ -0,0 +1,36 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { LineLoop } from '../../../../src/objects/LineLoop'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'LineLoop', () => { + + // INHERITANCE + QUnit.test( "Extending", ( assert ) => {...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/LineSegments.tests.js
@@ -0,0 +1,36 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { LineSegments } from '../../../../src/objects/LineSegments'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'LineSegments', () => { + + // INHERITANCE + QUnit.test( "Extending", ( a...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/Mesh.tests.js
@@ -0,0 +1,61 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Mesh } from '../../../../src/objects/Mesh'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'Mesh', () => { + + // INHERITANCE + QUnit.test( "Extending", ( assert ) => { + + asser...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/Points.tests.js
@@ -0,0 +1,35 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Points } from '../../../../src/objects/Points'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'Points', () => { + + // INHERITANCE + QUnit.test( "isPoints", ( assert ) => { + + ...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/Skeleton.tests.js
@@ -0,0 +1,46 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Skeleton } from '../../../../src/objects/Skeleton'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'Skeleton', () => { + + // INSTANCING + QUnit.test( "Instancing", ( assert ) => {...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/SkinnedMesh.tests.js
@@ -0,0 +1,65 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { SkinnedMesh } from '../../../../src/objects/SkinnedMesh'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'SkinnedMesh', () => { + + // INHERITANCE + QUnit.test( "Extending", ( asse...
true
Other
mrdoob
three.js
cf98f0a3c461c7109ba0ae722563f7ff71af9ba4.json
Add objects es6 unit tests
test/unit/src/objects/Sprite.tests.js
@@ -0,0 +1,47 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Sprite } from '../../../../src/objects/Sprite'; + +export default QUnit.module( 'Objects', () => { + + QUnit.module.todo( 'Sprite', () => { + + // INHERITANCE + QUnit.test( "Extending", ( assert ) => { + + ...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/AnimationLoader.tests.js
@@ -0,0 +1,34 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { AnimationLoader } from '../../../../src/loaders/AnimationLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'AnimationLoader', () => { + + // INSTANCING + QUnit.test( "Instanc...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/AudioLoader.tests.js
@@ -0,0 +1,28 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { AudioLoader } from '../../../../src/loaders/AudioLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'AudioLoader', () => { + + // INSTANCING + QUnit.test( "Instancing", ( asse...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/BufferGeometryLoader.tests.js
@@ -0,0 +1,34 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { BufferGeometryLoader } from '../../../../src/loaders/BufferGeometryLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'BufferGeometryLoader', () => { + + // INSTANCING + QUnit...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/Cache.tests.js
@@ -0,0 +1,39 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Cache } from '../../../../src/loaders/Cache'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'Cache', () => { + + // PUBLIC STUFF + QUnit.test( "add", ( assert ) => { + + assert....
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/CompressedTextureLoader.tests.js
@@ -0,0 +1,34 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { CompressedTextureLoader } from '../../../../src/loaders/CompressedTextureLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'CompressedTextureLoader', () => { + + // INSTANCING...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/CubeTextureLoader.tests.js
@@ -0,0 +1,40 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { CubeTextureLoader } from '../../../../src/loaders/CubeTextureLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'CubeTextureLoader', () => { + + // INSTANCING + QUnit.test( "I...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/DataTextureLoader.tests.js
@@ -0,0 +1,28 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { DataTextureLoader } from '../../../../src/loaders/DataTextureLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'DataTextureLoader', () => { + + // INSTANCING + QUnit.test( "I...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/FileLoader.tests.js
@@ -0,0 +1,58 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { FileLoader } from '../../../../src/loaders/FileLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'FileLoader', () => { + + // INSTANCING + QUnit.test( "Instancing", ( assert ...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/FontLoader.tests.js
@@ -0,0 +1,40 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { FontLoader } from '../../../../src/loaders/FontLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'FontLoader', () => { + + // INSTANCING + QUnit.test( "Instancing", ( assert ...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/ImageLoader.tests.js
@@ -0,0 +1,40 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { ImageLoader } from '../../../../src/loaders/ImageLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'ImageLoader', () => { + + // INSTANCING + QUnit.test( "Instancing", ( asse...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/JSONLoader.tests.js
@@ -0,0 +1,40 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { JSONLoader } from '../../../../src/loaders/JSONLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'JSONLoader', () => { + + // INSTANCING + QUnit.test( "Instancing", ( assert ...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/Loader.tests.js
@@ -0,0 +1,53 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { Loader } from '../../../../src/loaders/Loader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'Loader', () => { + + // INSTANCING + QUnit.test( "Instancing", ( assert ) => { + + ...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/LoadingManager.tests.js
@@ -0,0 +1,64 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { LoadingManager } from '../../../../src/loaders/LoadingManager'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'LoadingManager', () => { + + // INSTANCING + QUnit.test( "Instancing...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/MaterialLoader.tests.js
@@ -0,0 +1,40 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { MaterialLoader } from '../../../../src/loaders/MaterialLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'MaterialLoader', () => { + + // INSTANCING + QUnit.test( "Instancing...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/ObjectLoader.tests.js
@@ -0,0 +1,82 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { ObjectLoader } from '../../../../src/loaders/ObjectLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'ObjectLoader', () => { + + // INSTANCING + QUnit.test( "Instancing", ( a...
true
Other
mrdoob
three.js
f74b17963d5e16c0195771b1aaa2e9b0727fbf48.json
Add loaders es6 unit tests
test/unit/src/loaders/TextureLoader.tests.js
@@ -0,0 +1,40 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { TextureLoader } from '../../../../src/loaders/TextureLoader'; + +export default QUnit.module( 'Loaders', () => { + + QUnit.module.todo( 'TextureLoader', () => { + + // INSTANCING + QUnit.test( "Instancing", ...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/BoxGeometry.tests.js
@@ -0,0 +1,104 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + BoxGeometry, + BoxBufferGeometry +} from '../../../../src/geometries/BoxGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'BoxGeometry', ( hooks )...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/CircleGeometry.tests.js
@@ -0,0 +1,104 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + CircleGeometry, + CircleBufferGeometry +} from '../../../../src/geometries/CircleGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'CircleGeometry...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/ConeGeometry.tests.js
@@ -0,0 +1,85 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { + ConeGeometry, + ConeBufferGeometry +} from '../../../../src/geometries/ConeGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'ConeGeometry', ( hooks ) => { + + var geom...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/CylinderGeometry.tests.js
@@ -0,0 +1,120 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + CylinderGeometry, + CylinderBufferGeometry +} from '../../../../src/geometries/CylinderGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'Cylinder...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/DodecahedronGeometry.tests.js
@@ -0,0 +1,96 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + DodecahedronGeometry, + DodecahedronBufferGeometry +} from '../../../../src/geometries/DodecahedronGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/EdgesGeometry.tests.js
@@ -0,0 +1,310 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { EdgesGeometry } from '../../../../src/geometries/EdgesGeometry'; +import { Geometry } from '../../../../src/core/Geometry'; +import { BufferGeometry } from '../../../../src/core/BufferGe...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/ExtrudeGeometry.tests.js
@@ -0,0 +1,76 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { ExtrudeGeometry, ExtrudeBufferGeometry } from '../../../../src/geometries/ExtrudeGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'ExtrudeGeometry', () => { + + // INHER...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/IcosahedronGeometry.tests.js
@@ -0,0 +1,96 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + IcosahedronGeometry, + IcosahedronBufferGeometry +} from '../../../../src/geometries/IcosahedronGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( '...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/LatheGeometry.tests.js
@@ -0,0 +1,97 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { + LatheGeometry, + LatheBufferGeometry +} from '../../../../src/geometries/LatheGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'LatheGeometry', ( hooks ) => { + + var ...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/OctahedronGeometry.tests.js
@@ -0,0 +1,96 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + OctahedronGeometry, + OctahedronBufferGeometry +} from '../../../../src/geometries/OctahedronGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'Oct...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/ParametricGeometry.tests.js
@@ -0,0 +1,85 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { + ParametricGeometry, + ParametricBufferGeometry +} from '../../../../src/geometries/ParametricGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'ParametricGeometry', ( ho...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/PlaneGeometry.tests.js
@@ -0,0 +1,104 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + PlaneGeometry, + PlaneBufferGeometry +} from '../../../../src/geometries/PlaneGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'PlaneGeometry', (...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/PolyhedronGeometry.tests.js
@@ -0,0 +1,85 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { + PolyhedronGeometry, + PolyhedronBufferGeometry +} from '../../../../src/geometries/PolyhedronGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'PolyhedronGeometry', ( ho...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/RingGeometry.tests.js
@@ -0,0 +1,112 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + RingGeometry, + RingBufferGeometry +} from '../../../../src/geometries/RingGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'RingGeometry', ( hoo...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/ShapeGeometry.tests.js
@@ -0,0 +1,85 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { + ShapeGeometry, + ShapeBufferGeometry +} from '../../../../src/geometries/ShapeGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'ShapeGeometry', ( hooks ) => { + + var ...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/SphereGeometry.tests.js
@@ -0,0 +1,116 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + SphereGeometry, + SphereBufferGeometry +} from '../../../../src/geometries/SphereGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'SphereGeometry...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/TetrahedronGeometry.tests.js
@@ -0,0 +1,106 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + TetrahedronGeometry, + TetrahedronBufferGeometry +} from '../../../../src/geometries/TetrahedronGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( ...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/TextGeometry.tests.js
@@ -0,0 +1,88 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + */ +/* global QUnit */ + +import { + TextGeometry, + TextBufferGeometry +} from '../../../../src/geometries/TextGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'TextGeometry', ( hooks ) => { + + var geom...
true
Other
mrdoob
three.js
1061e2e0cd220d84c1a6a14814ae8514cd04ef78.json
Add geometries es6 unit tests
test/unit/src/geometries/TorusGeometry.tests.js
@@ -0,0 +1,108 @@ +/** + * @author TristanVALCKE / https://github.com/Itee + * @author Anonymous + */ +/* global QUnit */ + +import { + TorusGeometry, + TorusBufferGeometry +} from '../../../../src/geometries/TorusGeometry'; + +export default QUnit.module( 'Geometries', () => { + + QUnit.module.todo( 'TorusGeometry', (...
true