We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f186b20 commit 615c99fCopy full SHA for 615c99f
examples/js/loaders/GCodeLoader.js
@@ -146,7 +146,7 @@ THREE.GCodeLoader.prototype.parse = function ( data ) {
146
} else if ( cmd === 'G2' || cmd === 'G3' ) {
147
148
//G2/G3 - Arc Movement ( G2 clock wise and G3 counter clock wise )
149
- console.warn( 'THREE.GCodeLoader: Arc command not supported' );
+ //console.warn( 'THREE.GCodeLoader: Arc command not supported' );
150
151
} else if ( cmd === 'G90' ) {
152
@@ -170,7 +170,7 @@ THREE.GCodeLoader.prototype.parse = function ( data ) {
170
171
} else {
172
173
- console.warn( 'THREE.GCodeLoader: Command not supported:' + cmd );
+ //console.warn( 'THREE.GCodeLoader: Command not supported:' + cmd );
174
175
}
176
0 commit comments