Rename step importer.
This commit is contained in:
parent
7f5b8294e0
commit
686d225aa0
@ -8,7 +8,8 @@
|
||||
"scripts": {
|
||||
"start": "http-server",
|
||||
"test": "mocha test",
|
||||
"lint": "eslint source --fix",
|
||||
"lint": "eslint source",
|
||||
"lint_fix": "eslint source --fix",
|
||||
"docs": "jsdoc -c tools/jsdoc.json",
|
||||
"update_libs": "node tools/run_python.js tools/update_libs.py",
|
||||
"generate_icon_font": "node tools/run_python.js tools/generate_icon_font.py",
|
||||
|
||||
@ -12,7 +12,7 @@ import { ImporterO3dv } from './importero3dv.js';
|
||||
import { ImporterObj } from './importerobj.js';
|
||||
import { ImporterOff } from './importeroff.js';
|
||||
import { ImporterPly } from './importerply.js';
|
||||
import { ImporterStep } from './importerstep.js';
|
||||
import { ImporterStp } from './importerstp.js';
|
||||
import { ImporterStl } from './importerstl.js';
|
||||
import { ImporterThree3mf, ImporterThreeDae, ImporterThreeFbx, ImporterThreeWrl } from './importerthree.js';
|
||||
|
||||
@ -107,7 +107,7 @@ export class Importer
|
||||
new ImporterO3dv (),
|
||||
new Importer3dm (),
|
||||
new ImporterIfc (),
|
||||
new ImporterStep (),
|
||||
new ImporterStp (),
|
||||
new ImporterThreeFbx (),
|
||||
new ImporterThreeDae (),
|
||||
new ImporterThreeWrl (),
|
||||
|
||||
@ -3,7 +3,7 @@ import { GetExternalLibPath } from '../io/externallibs.js';
|
||||
import { ConvertThreeGeometryToMesh } from '../threejs/threeutils.js';
|
||||
import { ImporterBase } from './importerbase.js';
|
||||
|
||||
export class ImporterStep extends ImporterBase
|
||||
export class ImporterStp extends ImporterBase
|
||||
{
|
||||
constructor ()
|
||||
{
|
||||
@ -30,8 +30,8 @@ import { ImporterO3dv } from './import/importero3dv.js';
|
||||
import { ImporterObj } from './import/importerobj.js';
|
||||
import { ImporterOff } from './import/importeroff.js';
|
||||
import { ImporterPly } from './import/importerply.js';
|
||||
import { ImporterStep } from './import/importerstep.js';
|
||||
import { ImporterStl } from './import/importerstl.js';
|
||||
import { ImporterStp } from './import/importerstp.js';
|
||||
import { ImporterThreeSvg } from './import/importersvg.js';
|
||||
import { ImporterThreeBase, ImporterThreeFbx, ImporterThreeDae, ImporterThreeWrl, ImporterThree3mf } from './import/importerthree.js';
|
||||
import { NameFromLine, ParametersFromLine, ReadLines, IsPowerOfTwo, NextPowerOfTwo, UpdateMaterialTransparency } from './import/importerutils.js';
|
||||
@ -153,8 +153,8 @@ export {
|
||||
ImporterObj,
|
||||
ImporterOff,
|
||||
ImporterPly,
|
||||
ImporterStep,
|
||||
ImporterStl,
|
||||
ImporterStp,
|
||||
ImporterThreeSvg,
|
||||
ImporterThreeBase,
|
||||
ImporterThreeFbx,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user