Skip to content

Commit 615c99f

Browse files
committed
GCodeLoader: Commented out warnings.
1 parent f186b20 commit 615c99f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/js/loaders/GCodeLoader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ THREE.GCodeLoader.prototype.parse = function ( data ) {
146146
} else if ( cmd === 'G2' || cmd === 'G3' ) {
147147

148148
//G2/G3 - Arc Movement ( G2 clock wise and G3 counter clock wise )
149-
console.warn( 'THREE.GCodeLoader: Arc command not supported' );
149+
//console.warn( 'THREE.GCodeLoader: Arc command not supported' );
150150

151151
} else if ( cmd === 'G90' ) {
152152

@@ -170,7 +170,7 @@ THREE.GCodeLoader.prototype.parse = function ( data ) {
170170

171171
} else {
172172

173-
console.warn( 'THREE.GCodeLoader: Command not supported:' + cmd );
173+
//console.warn( 'THREE.GCodeLoader: Command not supported:' + cmd );
174174

175175
}
176176

0 commit comments

Comments
 (0)