Remove some TODOs

This commit is contained in:
Blue (Lukas Rieger) 2021-04-24 22:08:04 +02:00
parent 4e81bb4abd
commit ce57dfdda5
No known key found for this signature in database
GPG Key ID: 904C4995F9E1F800
3 changed files with 1 additions and 5 deletions

View File

@ -87,8 +87,6 @@ LineGeometry.prototype = Object.assign( Object.create( LineSegmentsGeometry.prot
copy: function ( /* source */ ) {
// todo
return this;
}

View File

@ -23,7 +23,7 @@ UniformsLib.line = {
resolution: { value: new Vector2( 1, 1 ) },
dashScale: { value: 1 },
dashSize: { value: 1 },
gapSize: { value: 1 }, // todo FIX - maybe change to totalSize
gapSize: { value: 1 },
opacity: { value: 1 }
};

View File

@ -243,8 +243,6 @@ LineSegmentsGeometry.prototype = Object.assign( Object.create( InstancedBufferGe
toJSON: function () {
// todo
},
applyMatrix: function ( matrix ) {