Rename step importer.

This commit is contained in:
kovacsv 2022-02-06 16:35:12 +01:00
parent 7f5b8294e0
commit 686d225aa0
4 changed files with 7 additions and 6 deletions

View File

@ -8,7 +8,8 @@
"scripts": { "scripts": {
"start": "http-server", "start": "http-server",
"test": "mocha test", "test": "mocha test",
"lint": "eslint source --fix", "lint": "eslint source",
"lint_fix": "eslint source --fix",
"docs": "jsdoc -c tools/jsdoc.json", "docs": "jsdoc -c tools/jsdoc.json",
"update_libs": "node tools/run_python.js tools/update_libs.py", "update_libs": "node tools/run_python.js tools/update_libs.py",
"generate_icon_font": "node tools/run_python.js tools/generate_icon_font.py", "generate_icon_font": "node tools/run_python.js tools/generate_icon_font.py",

View File

@ -12,7 +12,7 @@ import { ImporterO3dv } from './importero3dv.js';
import { ImporterObj } from './importerobj.js'; import { ImporterObj } from './importerobj.js';
import { ImporterOff } from './importeroff.js'; import { ImporterOff } from './importeroff.js';
import { ImporterPly } from './importerply.js'; import { ImporterPly } from './importerply.js';
import { ImporterStep } from './importerstep.js'; import { ImporterStp } from './importerstp.js';
import { ImporterStl } from './importerstl.js'; import { ImporterStl } from './importerstl.js';
import { ImporterThree3mf, ImporterThreeDae, ImporterThreeFbx, ImporterThreeWrl } from './importerthree.js'; import { ImporterThree3mf, ImporterThreeDae, ImporterThreeFbx, ImporterThreeWrl } from './importerthree.js';
@ -107,7 +107,7 @@ export class Importer
new ImporterO3dv (), new ImporterO3dv (),
new Importer3dm (), new Importer3dm (),
new ImporterIfc (), new ImporterIfc (),
new ImporterStep (), new ImporterStp (),
new ImporterThreeFbx (), new ImporterThreeFbx (),
new ImporterThreeDae (), new ImporterThreeDae (),
new ImporterThreeWrl (), new ImporterThreeWrl (),

View File

@ -3,7 +3,7 @@ import { GetExternalLibPath } from '../io/externallibs.js';
import { ConvertThreeGeometryToMesh } from '../threejs/threeutils.js'; import { ConvertThreeGeometryToMesh } from '../threejs/threeutils.js';
import { ImporterBase } from './importerbase.js'; import { ImporterBase } from './importerbase.js';
export class ImporterStep extends ImporterBase export class ImporterStp extends ImporterBase
{ {
constructor () constructor ()
{ {

View File

@ -30,8 +30,8 @@ import { ImporterO3dv } from './import/importero3dv.js';
import { ImporterObj } from './import/importerobj.js'; import { ImporterObj } from './import/importerobj.js';
import { ImporterOff } from './import/importeroff.js'; import { ImporterOff } from './import/importeroff.js';
import { ImporterPly } from './import/importerply.js'; import { ImporterPly } from './import/importerply.js';
import { ImporterStep } from './import/importerstep.js';
import { ImporterStl } from './import/importerstl.js'; import { ImporterStl } from './import/importerstl.js';
import { ImporterStp } from './import/importerstp.js';
import { ImporterThreeSvg } from './import/importersvg.js'; import { ImporterThreeSvg } from './import/importersvg.js';
import { ImporterThreeBase, ImporterThreeFbx, ImporterThreeDae, ImporterThreeWrl, ImporterThree3mf } from './import/importerthree.js'; import { ImporterThreeBase, ImporterThreeFbx, ImporterThreeDae, ImporterThreeWrl, ImporterThree3mf } from './import/importerthree.js';
import { NameFromLine, ParametersFromLine, ReadLines, IsPowerOfTwo, NextPowerOfTwo, UpdateMaterialTransparency } from './import/importerutils.js'; import { NameFromLine, ParametersFromLine, ReadLines, IsPowerOfTwo, NextPowerOfTwo, UpdateMaterialTransparency } from './import/importerutils.js';
@ -153,8 +153,8 @@ export {
ImporterObj, ImporterObj,
ImporterOff, ImporterOff,
ImporterPly, ImporterPly,
ImporterStep,
ImporterStl, ImporterStl,
ImporterStp,
ImporterThreeSvg, ImporterThreeSvg,
ImporterThreeBase, ImporterThreeBase,
ImporterThreeFbx, ImporterThreeFbx,