├── .gitattributes ├── .gitignore ├── 3D XML Example ├── .IntegrityCertificat ├── Axle.3DRep ├── CATMaterialRef.3dxml ├── CATRepImage.3dxml ├── Chassis.3DRep ├── Chroma_Material_Library_CATMaterial1_2_Rendering.3DRep ├── Dashboard_Material_Library_CATMaterial1_3_Rendering.3DRep ├── Fire_Red_Material_Library_CATMaterial1_Rendering.3DRep ├── Gold_Metal_Material_Library_CATMaterial1_1_Rendering.3DRep ├── Manifest.xml ├── NonAscii_208.3DRep ├── Preview2D.png ├── Wheel.3DRep ├── concrete.jpg ├── dashboard.jpg ├── material_12_Rendering.3DRep └── quad.3dxml ├── CAD2Unity ├── 3DXMLLoader │ ├── Implementation │ │ ├── Model │ │ │ ├── Header.cs │ │ │ ├── IThreeDXMLArchive.cs │ │ │ ├── Instance3D.cs │ │ │ ├── InstanceRep.cs │ │ │ ├── ModelInterna │ │ │ │ ├── Shell.cs │ │ │ │ ├── Supported3DRepFormats.cs │ │ │ │ └── Triangle.cs │ │ │ ├── Part.cs │ │ │ ├── Reference3D.cs │ │ │ ├── ReferenceRep.cs │ │ │ ├── ThreeDXMLFile.cs │ │ │ └── ThreeDXMLImplementation.cs │ │ ├── Parser │ │ │ ├── ParseInstance3DUsecase.cs │ │ │ ├── ParseInstanceRepUsecase.cs │ │ │ ├── ParseManifestUsecase.cs │ │ │ ├── ParseReference3DUsecase.cs │ │ │ ├── ParseReferenceRepUsecase.cs │ │ │ ├── ParseUtility.cs │ │ │ └── ThreeDXMLParser.cs │ │ └── ThreeDXMLImplementation.cs │ ├── Interface │ │ ├── Exception │ │ │ └── FormatNotSupportedException.cs │ │ └── ParserFactory.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ThreeDXMLLoader.csproj │ ├── ThreeDXMLLoader.csproj.DotSettings │ └── packages.config ├── BasicLoader │ ├── BasicLoader.csproj │ ├── Implementation │ │ ├── Loader │ │ │ ├── FileLoader.cs │ │ │ └── StreamLoader.cs │ │ └── Model │ │ │ ├── Constraint │ │ │ └── EmptyConstraint.cs │ │ │ ├── Facet.cs │ │ │ └── Model.cs │ ├── Interface │ │ ├── CADType.cs │ │ ├── IConstraint.cs │ │ ├── ILoader.cs │ │ ├── IModel.cs │ │ ├── IParser.cs │ │ ├── IPart.cs │ │ ├── LoaderFactory.cs │ │ └── ParsingException.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── CAD2Unity.sln ├── CAD2Unity.sln.ide │ ├── edb.chk │ ├── edbres00001.jrs │ ├── edbres00002.jrs │ └── storage.ide ├── CADLoader │ ├── CADLoader.cs │ ├── CADLoader.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Example │ ├── App.config │ ├── Example.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── quad.3dxml ├── STLLoader │ ├── Implementation │ │ └── Parser │ │ │ ├── ParseHelper.cs │ │ │ ├── ParsingException.cs │ │ │ └── STLParser.cs │ ├── Interface │ │ └── ParserFactory.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── STLLoader.csproj │ └── packages.config ├── STPLoader │ ├── Implementation │ │ ├── Converter │ │ │ ├── Converter.cs │ │ │ ├── Entity │ │ │ │ ├── AdvancedFaceConvertable.cs │ │ │ │ ├── BoundConvertable.cs │ │ │ │ ├── CircleConvertable.cs │ │ │ │ ├── ClosedShellConveratable.cs │ │ │ │ ├── CylindricalSurface.cs │ │ │ │ ├── IConvertable.cs │ │ │ │ ├── LineConvertable.cs │ │ │ │ ├── PlaneConvertable.cs │ │ │ │ └── SurfaceConvertable.cs │ │ │ └── Tuple.cs │ │ ├── Model │ │ │ ├── Entity │ │ │ │ ├── AdvancedFace.cs │ │ │ │ ├── Axis2Placement3D.cs │ │ │ │ ├── BSplineCurveWithKnots.cs │ │ │ │ ├── Bound.cs │ │ │ │ ├── CartesianPoint.cs │ │ │ │ ├── Circle.cs │ │ │ │ ├── ClosedShell.cs │ │ │ │ ├── ConicalSurface.cs │ │ │ │ ├── CylindricalSurface.cs │ │ │ │ ├── DirectionPoint.cs │ │ │ │ ├── EdgeCurve.cs │ │ │ │ ├── EdgeLoop.cs │ │ │ │ ├── Entity.cs │ │ │ │ ├── FaceBound.cs │ │ │ │ ├── FaceOuterBound.cs │ │ │ │ ├── Line.cs │ │ │ │ ├── OrientedEdge.cs │ │ │ │ ├── Plane.cs │ │ │ │ ├── Surface.cs │ │ │ │ ├── ToroidalSurface.cs │ │ │ │ ├── VectorPoint.cs │ │ │ │ └── VertexPoint.cs │ │ │ ├── FileDescription.cs │ │ │ ├── FileName.cs │ │ │ ├── FileSchema.cs │ │ │ ├── STPFile.cs │ │ │ ├── StpData.cs │ │ │ └── StpHeader.cs │ │ ├── Parser │ │ │ ├── ParseHelper.cs │ │ │ ├── ParsingException.cs │ │ │ └── STPParser.cs │ │ └── Validator │ │ │ └── STPValidator.cs │ ├── Interface │ │ ├── ConverterFactory.cs │ │ ├── IConverter.cs │ │ ├── IFormatConverter.cs │ │ ├── ISTPModel.cs │ │ ├── IValidator.cs │ │ ├── MeshModel.cs │ │ ├── ParserFactory.cs │ │ ├── ValidationResult.cs │ │ └── ValidatorFactory.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── STPLoader.csproj │ ├── STPLoader.nuspec │ └── packages.config ├── STPLoaderTest │ ├── Converter │ │ ├── CircleConvertableTest.cs │ │ └── TestData.cs │ ├── Gehaeuserumpf.stp │ ├── ParserTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── STPLoaderTest.csproj │ └── packages.config └── ThreeDLoaderTest │ ├── Functional Tests │ └── ThreeDXMLTest.cs │ ├── Model │ ├── ParseInstance3DUsecaseTest.cs │ └── ThreeDXMLFileTest.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ThreeDXMLLoaderTest.csproj │ ├── packages.config │ └── quad.3dxml ├── LICENSE ├── README.md └── doc └── Dateispecs ├── Iges ├── IGES5-3_forDownload.pdf └── version6.pdf └── STEP └── fundimpl.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/.gitignore -------------------------------------------------------------------------------- /3D XML Example/.IntegrityCertificat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/.IntegrityCertificat -------------------------------------------------------------------------------- /3D XML Example/Axle.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Axle.3DRep -------------------------------------------------------------------------------- /3D XML Example/CATMaterialRef.3dxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/CATMaterialRef.3dxml -------------------------------------------------------------------------------- /3D XML Example/CATRepImage.3dxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/CATRepImage.3dxml -------------------------------------------------------------------------------- /3D XML Example/Chassis.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Chassis.3DRep -------------------------------------------------------------------------------- /3D XML Example/Chroma_Material_Library_CATMaterial1_2_Rendering.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Chroma_Material_Library_CATMaterial1_2_Rendering.3DRep -------------------------------------------------------------------------------- /3D XML Example/Dashboard_Material_Library_CATMaterial1_3_Rendering.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Dashboard_Material_Library_CATMaterial1_3_Rendering.3DRep -------------------------------------------------------------------------------- /3D XML Example/Fire_Red_Material_Library_CATMaterial1_Rendering.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Fire_Red_Material_Library_CATMaterial1_Rendering.3DRep -------------------------------------------------------------------------------- /3D XML Example/Gold_Metal_Material_Library_CATMaterial1_1_Rendering.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Gold_Metal_Material_Library_CATMaterial1_1_Rendering.3DRep -------------------------------------------------------------------------------- /3D XML Example/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Manifest.xml -------------------------------------------------------------------------------- /3D XML Example/NonAscii_208.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/NonAscii_208.3DRep -------------------------------------------------------------------------------- /3D XML Example/Preview2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Preview2D.png -------------------------------------------------------------------------------- /3D XML Example/Wheel.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/Wheel.3DRep -------------------------------------------------------------------------------- /3D XML Example/concrete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/concrete.jpg -------------------------------------------------------------------------------- /3D XML Example/dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/dashboard.jpg -------------------------------------------------------------------------------- /3D XML Example/material_12_Rendering.3DRep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/material_12_Rendering.3DRep -------------------------------------------------------------------------------- /3D XML Example/quad.3dxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/3D XML Example/quad.3dxml -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/Header.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/IThreeDXMLArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/IThreeDXMLArchive.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/Instance3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/Instance3D.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/InstanceRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/InstanceRep.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/ModelInterna/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/ModelInterna/Shell.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/ModelInterna/Supported3DRepFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/ModelInterna/Supported3DRepFormats.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/ModelInterna/Triangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/ModelInterna/Triangle.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/Part.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/Part.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/Reference3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/Reference3D.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/ReferenceRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/ReferenceRep.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/ThreeDXMLFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/ThreeDXMLFile.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Model/ThreeDXMLImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Model/ThreeDXMLImplementation.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Parser/ParseInstance3DUsecase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Parser/ParseInstance3DUsecase.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Parser/ParseInstanceRepUsecase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Parser/ParseInstanceRepUsecase.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Parser/ParseManifestUsecase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Parser/ParseManifestUsecase.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Parser/ParseReference3DUsecase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Parser/ParseReference3DUsecase.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Parser/ParseReferenceRepUsecase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Parser/ParseReferenceRepUsecase.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Parser/ParseUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Parser/ParseUtility.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/Parser/ThreeDXMLParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/Parser/ThreeDXMLParser.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Implementation/ThreeDXMLImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Implementation/ThreeDXMLImplementation.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Interface/Exception/FormatNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Interface/Exception/FormatNotSupportedException.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Interface/ParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Interface/ParserFactory.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/ThreeDXMLLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/ThreeDXMLLoader.csproj -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/ThreeDXMLLoader.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/ThreeDXMLLoader.csproj.DotSettings -------------------------------------------------------------------------------- /CAD2Unity/3DXMLLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/3DXMLLoader/packages.config -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/BasicLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/BasicLoader.csproj -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Implementation/Loader/FileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Implementation/Loader/FileLoader.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Implementation/Loader/StreamLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Implementation/Loader/StreamLoader.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Implementation/Model/Constraint/EmptyConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Implementation/Model/Constraint/EmptyConstraint.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Implementation/Model/Facet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Implementation/Model/Facet.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Implementation/Model/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Implementation/Model/Model.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Interface/CADType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Interface/CADType.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Interface/IConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Interface/IConstraint.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Interface/ILoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Interface/ILoader.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Interface/IModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Interface/IModel.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Interface/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Interface/IParser.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Interface/IPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Interface/IPart.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Interface/LoaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Interface/LoaderFactory.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Interface/ParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Interface/ParsingException.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CAD2Unity/BasicLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/BasicLoader/packages.config -------------------------------------------------------------------------------- /CAD2Unity/CAD2Unity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/CAD2Unity.sln -------------------------------------------------------------------------------- /CAD2Unity/CAD2Unity.sln.ide/edb.chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/CAD2Unity.sln.ide/edb.chk -------------------------------------------------------------------------------- /CAD2Unity/CAD2Unity.sln.ide/edbres00001.jrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/CAD2Unity.sln.ide/edbres00001.jrs -------------------------------------------------------------------------------- /CAD2Unity/CAD2Unity.sln.ide/edbres00002.jrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/CAD2Unity.sln.ide/edbres00002.jrs -------------------------------------------------------------------------------- /CAD2Unity/CAD2Unity.sln.ide/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/CAD2Unity.sln.ide/storage.ide -------------------------------------------------------------------------------- /CAD2Unity/CADLoader/CADLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/CADLoader/CADLoader.cs -------------------------------------------------------------------------------- /CAD2Unity/CADLoader/CADLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/CADLoader/CADLoader.csproj -------------------------------------------------------------------------------- /CAD2Unity/CADLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/CADLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CAD2Unity/Example/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/Example/App.config -------------------------------------------------------------------------------- /CAD2Unity/Example/Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/Example/Example.csproj -------------------------------------------------------------------------------- /CAD2Unity/Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/Example/Program.cs -------------------------------------------------------------------------------- /CAD2Unity/Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CAD2Unity/Example/quad.3dxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/Example/quad.3dxml -------------------------------------------------------------------------------- /CAD2Unity/STLLoader/Implementation/Parser/ParseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STLLoader/Implementation/Parser/ParseHelper.cs -------------------------------------------------------------------------------- /CAD2Unity/STLLoader/Implementation/Parser/ParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STLLoader/Implementation/Parser/ParsingException.cs -------------------------------------------------------------------------------- /CAD2Unity/STLLoader/Implementation/Parser/STLParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STLLoader/Implementation/Parser/STLParser.cs -------------------------------------------------------------------------------- /CAD2Unity/STLLoader/Interface/ParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STLLoader/Interface/ParserFactory.cs -------------------------------------------------------------------------------- /CAD2Unity/STLLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STLLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CAD2Unity/STLLoader/STLLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STLLoader/STLLoader.csproj -------------------------------------------------------------------------------- /CAD2Unity/STLLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STLLoader/packages.config -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Converter.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/AdvancedFaceConvertable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/AdvancedFaceConvertable.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/BoundConvertable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/BoundConvertable.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/CircleConvertable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/CircleConvertable.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/ClosedShellConveratable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/ClosedShellConveratable.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/CylindricalSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/CylindricalSurface.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/IConvertable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/IConvertable.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/LineConvertable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/LineConvertable.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/PlaneConvertable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/PlaneConvertable.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Entity/SurfaceConvertable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Entity/SurfaceConvertable.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Converter/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Converter/Tuple.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/AdvancedFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/AdvancedFace.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/Axis2Placement3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/Axis2Placement3D.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/BSplineCurveWithKnots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/BSplineCurveWithKnots.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/Bound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/Bound.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/CartesianPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/CartesianPoint.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/Circle.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/ClosedShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/ClosedShell.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/ConicalSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/ConicalSurface.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/CylindricalSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/CylindricalSurface.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/DirectionPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/DirectionPoint.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/EdgeCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/EdgeCurve.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/EdgeLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/EdgeLoop.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/Entity.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/FaceBound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/FaceBound.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/FaceOuterBound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/FaceOuterBound.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/Line.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/OrientedEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/OrientedEdge.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/Plane.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/Surface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/Surface.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/ToroidalSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/ToroidalSurface.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/VectorPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/VectorPoint.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/Entity/VertexPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/Entity/VertexPoint.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/FileDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/FileDescription.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/FileName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/FileName.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/FileSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/FileSchema.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/STPFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/STPFile.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/StpData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/StpData.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Model/StpHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Model/StpHeader.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Parser/ParseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Parser/ParseHelper.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Parser/ParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Parser/ParsingException.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Parser/STPParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Parser/STPParser.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Implementation/Validator/STPValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Implementation/Validator/STPValidator.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/ConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/ConverterFactory.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/IConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/IConverter.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/IFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/IFormatConverter.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/ISTPModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/ISTPModel.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/IValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/IValidator.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/MeshModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/MeshModel.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/ParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/ParserFactory.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/ValidationResult.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Interface/ValidatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Interface/ValidatorFactory.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/README.md -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/STPLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/STPLoader.csproj -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/STPLoader.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/STPLoader.nuspec -------------------------------------------------------------------------------- /CAD2Unity/STPLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoader/packages.config -------------------------------------------------------------------------------- /CAD2Unity/STPLoaderTest/Converter/CircleConvertableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoaderTest/Converter/CircleConvertableTest.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoaderTest/Converter/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoaderTest/Converter/TestData.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoaderTest/Gehaeuserumpf.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoaderTest/Gehaeuserumpf.stp -------------------------------------------------------------------------------- /CAD2Unity/STPLoaderTest/ParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoaderTest/ParserTest.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoaderTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoaderTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CAD2Unity/STPLoaderTest/STPLoaderTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoaderTest/STPLoaderTest.csproj -------------------------------------------------------------------------------- /CAD2Unity/STPLoaderTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/STPLoaderTest/packages.config -------------------------------------------------------------------------------- /CAD2Unity/ThreeDLoaderTest/Functional Tests/ThreeDXMLTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/ThreeDLoaderTest/Functional Tests/ThreeDXMLTest.cs -------------------------------------------------------------------------------- /CAD2Unity/ThreeDLoaderTest/Model/ParseInstance3DUsecaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/ThreeDLoaderTest/Model/ParseInstance3DUsecaseTest.cs -------------------------------------------------------------------------------- /CAD2Unity/ThreeDLoaderTest/Model/ThreeDXMLFileTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/ThreeDLoaderTest/Model/ThreeDXMLFileTest.cs -------------------------------------------------------------------------------- /CAD2Unity/ThreeDLoaderTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/ThreeDLoaderTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CAD2Unity/ThreeDLoaderTest/ThreeDXMLLoaderTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/ThreeDLoaderTest/ThreeDXMLLoaderTest.csproj -------------------------------------------------------------------------------- /CAD2Unity/ThreeDLoaderTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/ThreeDLoaderTest/packages.config -------------------------------------------------------------------------------- /CAD2Unity/ThreeDLoaderTest/quad.3dxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/CAD2Unity/ThreeDLoaderTest/quad.3dxml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/README.md -------------------------------------------------------------------------------- /doc/Dateispecs/Iges/IGES5-3_forDownload.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/doc/Dateispecs/Iges/IGES5-3_forDownload.pdf -------------------------------------------------------------------------------- /doc/Dateispecs/Iges/version6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/doc/Dateispecs/Iges/version6.pdf -------------------------------------------------------------------------------- /doc/Dateispecs/STEP/fundimpl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i2e-haw-hamburg/cad-in-unity/HEAD/doc/Dateispecs/STEP/fundimpl.pdf --------------------------------------------------------------------------------