├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── codeql.yml │ └── release.yml ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── 3rdParty ├── .gitignore ├── BuildInstructions │ └── MacOSX │ │ ├── .gitignore │ │ ├── boost.txt │ │ ├── lib3ds.sh │ │ ├── lib3ds.txt │ │ ├── libjpeg-turbo.sh │ │ ├── libjpeg.sh │ │ ├── libjpeg.txt │ │ ├── libpng.sh │ │ └── libpng.txt ├── gl2ps │ ├── .gitignore │ ├── CMakeLists.txt │ ├── COPYING.GL2PS │ ├── COPYING.LGPL │ ├── Makefile │ ├── README.txt │ ├── TODO.txt │ ├── gl2ps.c │ ├── gl2ps.h │ ├── gl2ps.pdf │ ├── gl2ps.tex │ ├── gl2ps.vcxproj │ ├── gl2ps.vcxproj.filters │ ├── gl2psTest.c │ └── gl2psTestSimple.c ├── lib3ds.cmd ├── lib3ds.sh ├── lib3ds │ └── lib3ds.h ├── libjpeg-turbo.cmd ├── libjpeg.cmd ├── libjpeg │ ├── MacOSX │ │ └── jconfig.h │ ├── Windows │ │ └── jconfig.h │ ├── jinclude.h │ ├── jmorecfg.h │ └── jpeglib.h ├── libpng.cmd ├── libpng │ ├── MacOSX │ │ └── pnglibconf.h │ ├── Windows │ │ └── pnglibconf.h │ ├── png.h │ ├── pngconf.h │ └── pngpriv.h ├── minizip │ ├── .gitignore │ ├── Makefile │ ├── MiniZip64_Changes.txt │ ├── MiniZip64_info.txt │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── make_vms.com │ ├── miniunz.c │ ├── minizip.c │ ├── minizip.vcxproj │ ├── minizip.vcxproj.filters │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── stb │ ├── README.md │ └── stb_image_resize.h ├── tinyxml.cmd ├── tinyxml │ ├── .gitignore │ ├── Makefile │ ├── Makefile.pbartfai │ ├── changes.txt │ ├── docs │ │ ├── annotated.html │ │ ├── classTiXmlAttribute-members.html │ │ ├── classTiXmlAttribute.html │ │ ├── classTiXmlAttribute.png │ │ ├── classTiXmlBase-members.html │ │ ├── classTiXmlBase.html │ │ ├── classTiXmlBase.png │ │ ├── classTiXmlComment-members.html │ │ ├── classTiXmlComment.html │ │ ├── classTiXmlComment.png │ │ ├── classTiXmlDeclaration-members.html │ │ ├── classTiXmlDeclaration.html │ │ ├── classTiXmlDeclaration.png │ │ ├── classTiXmlDocument-members.html │ │ ├── classTiXmlDocument.html │ │ ├── classTiXmlDocument.png │ │ ├── classTiXmlElement-members.html │ │ ├── classTiXmlElement.html │ │ ├── classTiXmlElement.png │ │ ├── classTiXmlHandle-members.html │ │ ├── classTiXmlHandle.html │ │ ├── classTiXmlNode-members.html │ │ ├── classTiXmlNode.html │ │ ├── classTiXmlNode.png │ │ ├── classTiXmlPrinter-members.html │ │ ├── classTiXmlPrinter.html │ │ ├── classTiXmlPrinter.png │ │ ├── classTiXmlText-members.html │ │ ├── classTiXmlText.html │ │ ├── classTiXmlText.png │ │ ├── classTiXmlUnknown-members.html │ │ ├── classTiXmlUnknown.html │ │ ├── classTiXmlUnknown.png │ │ ├── classTiXmlVisitor-members.html │ │ ├── classTiXmlVisitor.html │ │ ├── classTiXmlVisitor.png │ │ ├── classes.html │ │ ├── deprecated.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x67.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x71.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_enum.html │ │ ├── functions_func.html │ │ ├── functions_func_0x63.html │ │ ├── functions_func_0x64.html │ │ ├── functions_func_0x65.html │ │ ├── functions_func_0x66.html │ │ ├── functions_func_0x67.html │ │ ├── functions_func_0x69.html │ │ ├── functions_func_0x6c.html │ │ ├── functions_func_0x6e.html │ │ ├── functions_func_0x70.html │ │ ├── functions_func_0x71.html │ │ ├── functions_func_0x72.html │ │ ├── functions_func_0x73.html │ │ ├── functions_func_0x74.html │ │ ├── functions_func_0x75.html │ │ ├── functions_func_0x76.html │ │ ├── functions_rela.html │ │ ├── functions_vars.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── pages.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ ├── tinystr_8h_source.html │ │ ├── tinyxml_8h_source.html │ │ └── tutorial0.html │ ├── makefile.vc │ ├── readme.txt │ ├── tinyXmlTest.vcxproj │ ├── tinyXmlTestSTL.vcxproj │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxml.sln │ ├── tinyxml.vcxproj │ ├── tinyxml.vcxproj.filters │ ├── tinyxmlSTL.vcxproj │ ├── tinyxml_lib.vcxproj │ ├── tinyxmlerror.cpp │ ├── tinyxmlparser.cpp │ ├── utf8test.gif │ ├── utf8test.xml │ ├── utf8testverify.xml │ └── xmltest.cpp ├── vbox-ldview.cmd ├── zlib-ng.cmd └── zlib.cmd ├── 8464.mpd ├── BoolOptionUI.cpp ├── BoolOptionUI.h ├── BoundingBoxDialog.cpp ├── BoundingBoxDialog.h ├── Build.txt ├── CUI ├── CUI.vcxproj ├── CUI.vcxproj.filters ├── CUIButton.cpp ├── CUIButton.h ├── CUIColorButton.cpp ├── CUIColorButton.h ├── CUIDefines.h ├── CUIDialog.cpp ├── CUIDialog.h ├── CUIModuleHolder.h ├── CUIOGLWindow.cpp ├── CUIOGLWindow.h ├── CUIPropertySheet.cpp ├── CUIPropertySheet.h ├── CUIScaler.cpp ├── CUIScaler.h ├── CUISubWindowInfo.cpp ├── CUISubWindowInfo.h ├── CUIThemes.cpp ├── CUIThemes.h ├── CUIWindow.cpp ├── CUIWindow.h ├── CUIWindowList.cpp ├── CUIWindowList.h ├── CUIWindowListEnumerator.cpp ├── CUIWindowListEnumerator.h ├── CUIWindowResizer.cpp └── CUIWindowResizer.h ├── CameraLocationDialog.cpp ├── CameraLocationDialog.h ├── ChangeHistory.html ├── CommandLinesList.spin1.txt ├── CommandLinesList.spin2.txt ├── ContextHelp.h ├── EnumOptionUI.cpp ├── EnumOptionUI.h ├── ExportOptionsDialog.cpp ├── ExportOptionsDialog.h ├── FloatOptionUI.cpp ├── FloatOptionUI.h ├── GroupOptionUI.cpp ├── GroupOptionUI.h ├── Help.html ├── Help ├── .gitignore ├── EffectsPrefs.rtf ├── GeneralPrefs.rtf ├── GeometryPrefs.rtf ├── LDView.hpj ├── PrefSetsPrefs.rtf ├── PrimitivesPrefs.rtf ├── SaveSnapshot.rtf ├── ScreenSaverPrefs.rtf └── UpdatesPrefs.rtf ├── Icons ├── LDView-background.png ├── LDView-background.tiff ├── LDViewFont.png ├── LDViewIcon.gif ├── LDViewIcon.ico ├── LDrawIcon.ico ├── LightAngleLL.ico ├── LightAngleLL.png ├── LightAngleLL@2x.png ├── LightAngleLLOff.png ├── LightAngleLLOff@2x.png ├── LightAngleLM.ico ├── LightAngleLM.png ├── LightAngleLM@2x.png ├── LightAngleLMOff.png ├── LightAngleLMOff@2x.png ├── LightAngleLR.ico ├── LightAngleLR.png ├── LightAngleLR@2x.png ├── LightAngleLROff.png ├── LightAngleLROff@2x.png ├── LightAngleML.ico ├── LightAngleML.png ├── LightAngleML@2x.png ├── LightAngleMLOff.png ├── LightAngleMLOff@2x.png ├── LightAngleMM.ico ├── LightAngleMM.png ├── LightAngleMM@2x.png ├── LightAngleMMOff.png ├── LightAngleMMOff@2x.png ├── LightAngleMR.ico ├── LightAngleMR.png ├── LightAngleMR@2x.png ├── LightAngleMROff.png ├── LightAngleMROff@2x.png ├── LightAngleUL.ico ├── LightAngleUL.png ├── LightAngleUL@2x.png ├── LightAngleULOff.png ├── LightAngleULOff@2x.png ├── LightAngleUM.ico ├── LightAngleUM.png ├── LightAngleUM@2x.png ├── LightAngleUMOff.png ├── LightAngleUMOff@2x.png ├── LightAngleUR.ico ├── LightAngleUR.png ├── LightAngleUR@2x.png ├── LightAngleUROff.png ├── LightAngleUROff@2x.png ├── LightAngles.psd ├── MPDIcon.ico ├── SanSerif@2x.png ├── error_colinear.png ├── error_colinear@2x.png ├── error_concave_quad.png ├── error_concave_quad@2x.png ├── error_determinant.png ├── error_determinant@2x.png ├── error_dots.png ├── error_dots@2x.png ├── error_fnf.png ├── error_fnf@2x.png ├── error_info.png ├── error_info@2x.png ├── error_loop.png ├── error_loop@2x.png ├── error_matching_points.png ├── error_matching_points@2x.png ├── error_matrix.png ├── error_matrix@2x.png ├── error_non_flat_quad.png ├── error_non_flat_quad@2x.png ├── error_opengl.png ├── error_parse.png ├── error_parse@2x.png ├── error_vertex_order.png ├── error_vertex_order@2x.png ├── examine.ico ├── extra_dirs_toolbar.png ├── extra_dirs_toolbar@2x.png ├── flythrou.ico ├── screen_saver_preview.png ├── toolbar_all_cond.png ├── toolbar_all_cond@2x.png ├── toolbar_axes.png ├── toolbar_axes@2x.png ├── toolbar_bfc.png ├── toolbar_bfc@2x.png ├── toolbar_bfc_dark.png ├── toolbar_bfc_dark@2x.png ├── toolbar_cond_ctrl.png ├── toolbar_cond_ctrl@2x.png ├── toolbar_cond_ctrl_dark.png ├── toolbar_cond_ctrl_dark@2x.png ├── toolbar_edge.png ├── toolbar_edge@2x.png ├── toolbar_errors.png ├── toolbar_errors@2x.png ├── toolbar_examine.png ├── toolbar_examine@2x.png ├── toolbar_export.png ├── toolbar_export@2x.png ├── toolbar_flat.png ├── toolbar_flat@2x.png ├── toolbar_fly.png ├── toolbar_fly@2x.png ├── toolbar_fullscreen.png ├── toolbar_fullscreen@2x.png ├── toolbar_fullscreen_dark.png ├── toolbar_fullscreen_dark@2x.png ├── toolbar_help.png ├── toolbar_help@2x.png ├── toolbar_latlon.png ├── toolbar_latlon@2x.png ├── toolbar_latlonrot.png ├── toolbar_latlonrot@2x.png ├── toolbar_light.png ├── toolbar_light@2x.png ├── toolbar_low_studs.png ├── toolbar_low_studs@2x.png ├── toolbar_model_bbox.png ├── toolbar_model_bbox@2x.png ├── toolbar_model_tree.png ├── toolbar_model_tree@2x.png ├── toolbar_mpd.png ├── toolbar_mpd@2x.png ├── toolbar_mpd_dark.png ├── toolbar_mpd_dark@2x.png ├── toolbar_open.png ├── toolbar_open@2x.png ├── toolbar_open_dark.png ├── toolbar_open_dark@2x.png ├── toolbar_part_bbox.png ├── toolbar_part_bbox@2x.png ├── toolbar_partslist.png ├── toolbar_partslist@2x.png ├── toolbar_povcamera.png ├── toolbar_povcamera@2x.png ├── toolbar_povcamera_dark.png ├── toolbar_povcamera_dark@2x.png ├── toolbar_preferences.png ├── toolbar_preferences@2x.png ├── toolbar_primsubs.png ├── toolbar_primsubs@2x.png ├── toolbar_print.png ├── toolbar_print@2x.png ├── toolbar_random.png ├── toolbar_random@2x.png ├── toolbar_refresh.png ├── toolbar_refresh@2x.png ├── toolbar_refresh_dark.png ├── toolbar_refresh_dark@2x.png ├── toolbar_reload.png ├── toolbar_reload@2x.png ├── toolbar_rightsideup.png ├── toolbar_rightsideup@2x.png ├── toolbar_seams.png ├── toolbar_seams@2x.png ├── toolbar_smooth.png ├── toolbar_smooth@2x.png ├── toolbar_snapshot.png ├── toolbar_snapshot@2x.png ├── toolbar_snapshot_dark.png ├── toolbar_snapshot_dark@2x.png ├── toolbar_step_first.png ├── toolbar_step_first@2x.png ├── toolbar_step_last.png ├── toolbar_step_last@2x.png ├── toolbar_step_next.png ├── toolbar_step_next@2x.png ├── toolbar_step_prev.png ├── toolbar_step_prev@2x.png ├── toolbar_stud.png ├── toolbar_stud@2x.png ├── toolbar_texmaps.png ├── toolbar_texmaps@2x.png ├── toolbar_topmost.png ├── toolbar_topmost@2x.png ├── toolbar_trans_default.png ├── toolbar_trans_default@2x.png ├── toolbar_view.png ├── toolbar_view@2x.png ├── toolbar_view_2_3rds.png ├── toolbar_view_2_3rds@2x.png ├── toolbar_view_2_3rds_dark.png ├── toolbar_view_2_3rds_dark@2x.png ├── toolbar_view_back.png ├── toolbar_view_back@2x.png ├── toolbar_view_back_dark.png ├── toolbar_view_back_dark@2x.png ├── toolbar_view_bottom.png ├── toolbar_view_bottom@2x.png ├── toolbar_view_bottom_dark.png ├── toolbar_view_bottom_dark@2x.png ├── toolbar_view_front.png ├── toolbar_view_front@2x.png ├── toolbar_view_front_dark.png ├── toolbar_view_front_dark@2x.png ├── toolbar_view_left.png ├── toolbar_view_left@2x.png ├── toolbar_view_left_dark.png ├── toolbar_view_left_dark@2x.png ├── toolbar_view_right.png ├── toolbar_view_right@2x.png ├── toolbar_view_right_dark.png ├── toolbar_view_right_dark@2x.png ├── toolbar_view_top.png ├── toolbar_view_top@2x.png ├── toolbar_view_top_dark.png ├── toolbar_view_top_dark@2x.png ├── toolbar_walk.png ├── toolbar_walk@2x.png ├── toolbar_walk_dark.png ├── toolbar_walk_dark@2x.png ├── toolbar_wire_cutaway.png ├── toolbar_wire_cutaway@2x.png ├── toolbar_wireframe.png ├── toolbar_wireframe@2x.png ├── toolbar_zoom2fit.png ├── toolbar_zoom2fit@2x.png ├── toolbar_zoom2fit_dark.png └── toolbar_zoom2fit_dark@2x.png ├── JpegOptionsDialog.cpp ├── JpegOptionsDialog.h ├── LDExporter ├── .gitignore ├── LD3dsExporter.cpp ├── LD3dsExporter.h ├── LDExportMessages.ini ├── LDExporter.cpp ├── LDExporter.h ├── LDExporter.vcxproj ├── LDExporter.vcxproj.filters ├── LDExporterSetting.cpp ├── LDExporterSetting.h ├── LDLdrExporter.cpp ├── LDLdrExporter.h ├── LDPovExporter.cpp ├── LDPovExporter.h ├── LDStlExporter.cpp ├── LDStlExporter.h ├── LGEO.xml ├── Makefile └── lg_elements.lst ├── LDLib ├── .gitignore ├── LDConsoleAlertHandler.cpp ├── LDConsoleAlertHandler.h ├── LDHtmlInventory.cpp ├── LDHtmlInventory.h ├── LDInputHandler.cpp ├── LDInputHandler.h ├── LDLib.vcxproj ├── LDLib.vcxproj.filters ├── LDLibraryUpdateInfo.cpp ├── LDLibraryUpdateInfo.h ├── LDLibraryUpdater.cpp ├── LDLibraryUpdater.h ├── LDModelParser.cpp ├── LDModelParser.h ├── LDModelTree.cpp ├── LDModelTree.h ├── LDObiInfo.cpp ├── LDObiInfo.h ├── LDPartCount.cpp ├── LDPartCount.h ├── LDPartsList.cpp ├── LDPartsList.h ├── LDPreferences.cpp ├── LDPreferences.h ├── LDSnapshotTaker.cpp ├── LDSnapshotTaker.h ├── LDUserDefaultsKeys.h ├── LDViewPoint.cpp ├── LDViewPoint.h ├── LDrawModelViewer.cpp ├── LDrawModelViewer.h └── Makefile ├── LDLoader ├── .gitignore ├── LDLActionLine.cpp ├── LDLActionLine.h ├── LDLAutoCamera.cpp ├── LDLAutoCamera.h ├── LDLCamera.cpp ├── LDLCamera.h ├── LDLCommentLine.cpp ├── LDLCommentLine.h ├── LDLConditionalLineLine.cpp ├── LDLConditionalLineLine.h ├── LDLEmptyLine.cpp ├── LDLEmptyLine.h ├── LDLError.cpp ├── LDLError.h ├── LDLFacing.cpp ├── LDLFacing.h ├── LDLFileLine.cpp ├── LDLFileLine.h ├── LDLFindFileAlert.cpp ├── LDLFindFileAlert.h ├── LDLLineLine.cpp ├── LDLLineLine.h ├── LDLMacros.h ├── LDLMainModel.cpp ├── LDLMainModel.h ├── LDLModel.cpp ├── LDLModel.h ├── LDLModelLine.cpp ├── LDLModelLine.h ├── LDLPalette.cpp ├── LDLPalette.h ├── LDLPrimitiveCheck.cpp ├── LDLPrimitiveCheck.h ├── LDLQuadLine.cpp ├── LDLQuadLine.h ├── LDLShapeLine.cpp ├── LDLShapeLine.h ├── LDLTriangleLine.cpp ├── LDLTriangleLine.h ├── LDLUnknownLine.cpp ├── LDLUnknownLine.h ├── LDLoader.vcxproj ├── LDLoader.vcxproj.filters ├── LDrawInP.h ├── LDrawIni.c ├── LDrawIni.h └── Makefile ├── LDVExtensionsSetup.cpp ├── LDVExtensionsSetup.h ├── LDVLib ├── LDVLib.cpp ├── LDVLib.h ├── LDVLib.rc ├── LDVLib.vcxproj ├── LDVLib.vcxproj.filters ├── StdAfx.cpp ├── StdAfx.h └── resource.h ├── LDView Home Page.url ├── LDView.exe.manifest ├── LDView.iss ├── LDView.rc ├── LDView.sln ├── LDView.vcxproj ├── LDView.vcxproj.filters ├── LDView64.exe.manifest ├── LDView64.iss ├── LDViewA.iss ├── LDViewMain.cpp ├── LDViewMessages.ini ├── LDViewPreferences.cpp ├── LDViewPreferences.h ├── LDViewThumbs ├── .gitignore ├── Build.txt ├── LDViewThumbExtractor.cpp ├── LDViewThumbExtractor.h ├── LDViewThumbExtractor.rgs ├── LDViewThumbs.cpp ├── LDViewThumbs.def ├── LDViewThumbs.idl ├── LDViewThumbs.rc ├── LDViewThumbs.vcxproj ├── LDViewThumbs.vcxproj.filters ├── LDViewThumbs64.def ├── LDViewThumbsA.def ├── StdAfx.cpp ├── StdAfx.h ├── dlldatax.c ├── dlldatax.h └── resource.h ├── LDViewWindow.cpp ├── LDViewWindow.h ├── LGEOTables ├── .gitignore ├── LGEOTables.cpp ├── LGEOTables.sln ├── LGEOTables.vcxproj ├── LGEOTables.vcxproj.filters └── Makefile ├── LatLonDialog.cpp ├── LatLonDialog.h ├── Launcher ├── Launcher.cpp ├── Launcher.sln ├── Launcher.vcxproj └── Launcher.vcxproj.filters ├── LocationDialog.cpp ├── LocationDialog.h ├── LongOptionUI.cpp ├── LongOptionUI.h ├── MacOSX ├── 3rdParty │ └── 3rdParty.xcodeproj │ │ └── project.pbxproj ├── LDExporter │ ├── LDExporter.xcodeproj │ │ └── project.pbxproj │ └── LDExporter_Prefix.pch ├── LDLib │ ├── LDLib.xcodeproj │ │ └── project.pbxproj │ └── LDLib_Prefix.pch ├── LDLoader │ ├── LDLoader.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── LDLoader_Prefix.pch ├── LDView │ ├── .gitignore │ ├── AlertHandler.cpp │ ├── AlertHandler.h │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── LDView.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── LDraw-Brick.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── LDraw.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ └── Toolbar Icons │ │ │ ├── Contents.json │ │ │ ├── toolbar_all_cond.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_all_cond.png │ │ │ └── toolbar_all_cond@2x.png │ │ │ ├── toolbar_axes.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_axes.png │ │ │ └── toolbar_axes@2x.png │ │ │ ├── toolbar_bfc.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_bfc.png │ │ │ ├── toolbar_bfc@2x.png │ │ │ ├── toolbar_bfc_dark.png │ │ │ └── toolbar_bfc_dark@2x.png │ │ │ ├── toolbar_cond_ctrl.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_cond_ctrl.png │ │ │ ├── toolbar_cond_ctrl@2x.png │ │ │ ├── toolbar_cond_ctrl_dark.png │ │ │ └── toolbar_cond_ctrl_dark@2x.png │ │ │ ├── toolbar_edge.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_edge.png │ │ │ └── toolbar_edge@2x.png │ │ │ ├── toolbar_errors.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_errors.png │ │ │ └── toolbar_errors@2x.png │ │ │ ├── toolbar_examine.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_examine.png │ │ │ └── toolbar_examine@2x.png │ │ │ ├── toolbar_export.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_export.png │ │ │ └── toolbar_export@2x.png │ │ │ ├── toolbar_flat.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_flat.png │ │ │ └── toolbar_flat@2x.png │ │ │ ├── toolbar_fly.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_fly.png │ │ │ └── toolbar_fly@2x.png │ │ │ ├── toolbar_fullscreen.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_fullscreen.png │ │ │ ├── toolbar_fullscreen@2x.png │ │ │ ├── toolbar_fullscreen_dark.png │ │ │ └── toolbar_fullscreen_dark@2x.png │ │ │ ├── toolbar_help.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_help.png │ │ │ └── toolbar_help@2x.png │ │ │ ├── toolbar_latlon.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_latlon.png │ │ │ └── toolbar_latlon@2x.png │ │ │ ├── toolbar_latlonrot.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_latlonrot.png │ │ │ └── toolbar_latlonrot@2x.png │ │ │ ├── toolbar_light.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_light.png │ │ │ └── toolbar_light@2x.png │ │ │ ├── toolbar_low_studs.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_low_studs.png │ │ │ └── toolbar_low_studs@2x.png │ │ │ ├── toolbar_model_bbox.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_model_bbox.png │ │ │ └── toolbar_model_bbox@2x.png │ │ │ ├── toolbar_model_tree.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_model_tree.png │ │ │ └── toolbar_model_tree@2x.png │ │ │ ├── toolbar_mpd.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_mpd.png │ │ │ ├── toolbar_mpd@2x.png │ │ │ ├── toolbar_mpd_dark.png │ │ │ └── toolbar_mpd_dark@2x.png │ │ │ ├── toolbar_open.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_open.png │ │ │ ├── toolbar_open@2x.png │ │ │ ├── toolbar_open_dark.png │ │ │ └── toolbar_open_dark@2x.png │ │ │ ├── toolbar_part_bbox.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_part_bbox.png │ │ │ └── toolbar_part_bbox@2x.png │ │ │ ├── toolbar_partslist.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_partslist.png │ │ │ └── toolbar_partslist@2x.png │ │ │ ├── toolbar_povcamera.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_povcamera.png │ │ │ ├── toolbar_povcamera@2x.png │ │ │ ├── toolbar_povcamera_dark.png │ │ │ └── toolbar_povcamera_dark@2x.png │ │ │ ├── toolbar_preferences.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_preferences.png │ │ │ └── toolbar_preferences@2x.png │ │ │ ├── toolbar_primsubs.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_primsubs.png │ │ │ └── toolbar_primsubs@2x.png │ │ │ ├── toolbar_print.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_print.png │ │ │ └── toolbar_print@2x.png │ │ │ ├── toolbar_random.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_random.png │ │ │ └── toolbar_random@2x.png │ │ │ ├── toolbar_refresh.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_refresh.png │ │ │ ├── toolbar_refresh@2x.png │ │ │ ├── toolbar_refresh_dark.png │ │ │ └── toolbar_refresh_dark@2x.png │ │ │ ├── toolbar_reload.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_reload.png │ │ │ └── toolbar_reload@2x.png │ │ │ ├── toolbar_rightsideup.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_rightsideup.png │ │ │ └── toolbar_rightsideup@2x.png │ │ │ ├── toolbar_seams.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_seams.png │ │ │ └── toolbar_seams@2x.png │ │ │ ├── toolbar_smooth.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_smooth.png │ │ │ └── toolbar_smooth@2x.png │ │ │ ├── toolbar_snapshot.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_snapshot.png │ │ │ ├── toolbar_snapshot@2x.png │ │ │ ├── toolbar_snapshot_dark.png │ │ │ └── toolbar_snapshot_dark@2x.png │ │ │ ├── toolbar_step_first.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_step_first.png │ │ │ └── toolbar_step_first@2x.png │ │ │ ├── toolbar_step_last.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_step_last.png │ │ │ └── toolbar_step_last@2x.png │ │ │ ├── toolbar_step_next.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_step_next.png │ │ │ └── toolbar_step_next@2x.png │ │ │ ├── toolbar_step_prev.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_step_prev.png │ │ │ └── toolbar_step_prev@2x.png │ │ │ ├── toolbar_stud.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_stud.png │ │ │ └── toolbar_stud@2x.png │ │ │ ├── toolbar_texmaps.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_texmaps.png │ │ │ └── toolbar_texmaps@2x.png │ │ │ ├── toolbar_topmost.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_topmost.png │ │ │ └── toolbar_topmost@2x.png │ │ │ ├── toolbar_trans_default.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_trans_default.png │ │ │ └── toolbar_trans_default@2x.png │ │ │ ├── toolbar_view.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_view.png │ │ │ └── toolbar_view@2x.png │ │ │ ├── toolbar_view_2_3rds.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_view_2_3rds.png │ │ │ ├── toolbar_view_2_3rds@2x.png │ │ │ ├── toolbar_view_2_3rds_dark.png │ │ │ └── toolbar_view_2_3rds_dark@2x.png │ │ │ ├── toolbar_view_back.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_view_back.png │ │ │ ├── toolbar_view_back@2x.png │ │ │ ├── toolbar_view_back_dark.png │ │ │ └── toolbar_view_back_dark@2x.png │ │ │ ├── toolbar_view_bottom.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_view_bottom.png │ │ │ ├── toolbar_view_bottom@2x.png │ │ │ ├── toolbar_view_bottom_dark.png │ │ │ └── toolbar_view_bottom_dark@2x.png │ │ │ ├── toolbar_view_front.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_view_front.png │ │ │ ├── toolbar_view_front@2x.png │ │ │ ├── toolbar_view_front_dark.png │ │ │ └── toolbar_view_front_dark@2x.png │ │ │ ├── toolbar_view_left.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_view_left.png │ │ │ ├── toolbar_view_left@2x.png │ │ │ ├── toolbar_view_left_dark.png │ │ │ └── toolbar_view_left_dark@2x.png │ │ │ ├── toolbar_view_right.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_view_right.png │ │ │ ├── toolbar_view_right@2x.png │ │ │ ├── toolbar_view_right_dark.png │ │ │ └── toolbar_view_right_dark@2x.png │ │ │ ├── toolbar_view_top.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_view_top.png │ │ │ ├── toolbar_view_top@2x.png │ │ │ ├── toolbar_view_top_dark.png │ │ │ └── toolbar_view_top_dark@2x.png │ │ │ ├── toolbar_walk.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_walk.png │ │ │ ├── toolbar_walk@2x.png │ │ │ ├── toolbar_walk_dark.png │ │ │ └── toolbar_walk_dark@2x.png │ │ │ ├── toolbar_wire_cutaway.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_wire_cutaway.png │ │ │ └── toolbar_wire_cutaway@2x.png │ │ │ ├── toolbar_wireframe.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_wireframe.png │ │ │ └── toolbar_wireframe@2x.png │ │ │ └── toolbar_zoom2fit.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_zoom2fit.png │ │ │ ├── toolbar_zoom2fit@2x.png │ │ │ ├── toolbar_zoom2fit_dark.png │ │ │ └── toolbar_zoom2fit_dark@2x.png │ ├── AutoDeleter.h │ ├── AutoDeleter.mm │ ├── Base.lproj │ │ ├── BoundingBox.xib │ │ ├── CameraLocation.xib │ │ ├── ErrorsAndWarnings.xib │ │ ├── GoToStep.xib │ │ ├── JpegOptions.xib │ │ ├── LatLon.xib │ │ ├── MPD.xib │ │ ├── MainMenu.xib │ │ ├── ModelTree.xib │ │ ├── ModelWindow.xib │ │ ├── OpenGLDriverInfo.xib │ │ ├── Options.xib │ │ ├── PartsList.xib │ │ ├── PrefSetHotKey.xib │ │ ├── PrefSetNew.xib │ │ ├── Preferences.xib │ │ ├── PrintAccessoryView.xib │ │ ├── RotationCenter.xib │ │ ├── SaveExportView.xib │ │ ├── SaveSnapshotView.xib │ │ ├── Statistics.xib │ │ └── Updater.xib │ ├── BoolOptionUI.h │ ├── BoolOptionUI.mm │ ├── BoundingBox.h │ ├── BoundingBox.mm │ ├── CameraLocation.h │ ├── CameraLocation.mm │ ├── CommandLineSnapshot.h │ ├── CommandLineSnapshot.mm │ ├── CustomControls │ │ ├── ToolbarPopUpButton.h │ │ ├── ToolbarPopUpButton.m │ │ ├── ToolbarPopUpButtonCell.h │ │ ├── ToolbarPopUpButtonCell.m │ │ ├── ToolbarSegmentedCell.h │ │ ├── ToolbarSegmentedCell.m │ │ ├── ToolbarSegmentedControl.h │ │ └── ToolbarSegmentedControl.m │ ├── EffectsPage.h │ ├── EffectsPage.mm │ ├── EnumOptionUI.h │ ├── EnumOptionUI.mm │ ├── ErrorItem.h │ ├── ErrorItem.mm │ ├── ErrorsAndWarnings.h │ ├── ErrorsAndWarnings.mm │ ├── FileTypeViewOwner.h │ ├── FileTypeViewOwner.mm │ ├── FloatOptionUI.h │ ├── FloatOptionUI.mm │ ├── GeneralPage.h │ ├── GeneralPage.mm │ ├── GenericSheet.h │ ├── GenericSheet.mm │ ├── GeometryPage.h │ ├── GeometryPage.mm │ ├── GoToStep.h │ ├── GoToStep.m │ ├── GroupOptionUI.h │ ├── GroupOptionUI.mm │ ├── HelperPanel.h │ ├── HelperPanel.mm │ ├── Images │ │ ├── BuildToolbarImages.sh │ │ ├── MyResizeCorner.png │ │ ├── MyResizeCorner@2x.png │ │ ├── error_colinear.png │ │ ├── error_colinear@2x.png │ │ ├── error_color.png │ │ ├── error_color@2x.png │ │ ├── error_concave_quad.png │ │ ├── error_concave_quad@2x.png │ │ ├── error_determinant.png │ │ ├── error_determinant@2x.png │ │ ├── error_fnf.png │ │ ├── error_fnf@2x.png │ │ ├── error_info.png │ │ ├── error_info@2x.png │ │ ├── error_loop.png │ │ ├── error_loop@2x.png │ │ ├── error_matching_points.png │ │ ├── error_matching_points@2x.png │ │ ├── error_matrix.png │ │ ├── error_matrix@2x.png │ │ ├── error_non_flat_quad.png │ │ ├── error_non_flat_quad@2x.png │ │ ├── error_parse.png │ │ ├── error_parse@2x.png │ │ ├── error_vertex_order.png │ │ ├── error_vertex_order@2x.png │ │ ├── examine.png │ │ └── flythrough.png │ ├── Info.plist │ ├── JpegOptions.h │ ├── JpegOptions.mm │ ├── LDView.iconset │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── LDView.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── LDView.xcscheme │ ├── LDViewCategories.h │ ├── LDViewCategories.mm │ ├── LDViewController.h │ ├── LDViewController.mm │ ├── LDView_Prefix.pch │ ├── LDraw.iconset │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── LDrawModelView.h │ ├── LDrawModelView.mm │ ├── LDrawPage.h │ ├── LDrawPage.mm │ ├── LatLon.h │ ├── LatLon.mm │ ├── LocationSheet.h │ ├── LocationSheet.mm │ ├── LongOptionUI.h │ ├── LongOptionUI.mm │ ├── MPD.h │ ├── MPD.mm │ ├── MacSetup.h │ ├── ModelTree.h │ ├── ModelTree.mm │ ├── ModelTreeItem.h │ ├── ModelTreeItem.mm │ ├── ModelWindow.h │ ├── ModelWindow.mm │ ├── Mpd.icns │ ├── NumberFormatterFix.h │ ├── NumberFormatterFix.m │ ├── NumberOptionUI.h │ ├── NumberOptionUI.mm │ ├── OCLocalStrings.h │ ├── OCLocalStrings.mm │ ├── OCUserDefaults.h │ ├── OCUserDefaults.mm │ ├── OCWebClientPlugin.h │ ├── OCWebClientPlugin.mm │ ├── OpenGLDriverInfo.h │ ├── OpenGLDriverInfo.mm │ ├── OptionUI.h │ ├── OptionUI.mm │ ├── Options.h │ ├── Options.mm │ ├── OptionsDocView.h │ ├── OptionsDocView.mm │ ├── OptionsPanel.h │ ├── OptionsPanel.m │ ├── PartsList.h │ ├── PartsList.mm │ ├── PathOptionUI.h │ ├── PathOptionUI.mm │ ├── PrefSetHotKeySheet.h │ ├── PrefSetHotKeySheet.mm │ ├── PrefSetNewSheet.h │ ├── PrefSetNewSheet.mm │ ├── PrefSetsPage.h │ ├── PrefSetsPage.mm │ ├── PreferencePage.h │ ├── PreferencePage.mm │ ├── Preferences.h │ ├── Preferences.mm │ ├── PrimitivesPage.h │ ├── PrimitivesPage.mm │ ├── PrintAccessoryViewOwner.h │ ├── PrintAccessoryViewOwner.mm │ ├── RotationCenter.h │ ├── RotationCenter.mm │ ├── SaveExportViewOwner.h │ ├── SaveExportViewOwner.mm │ ├── SaveSnapshotViewOwner.h │ ├── SaveSnapshotViewOwner.mm │ ├── SnapshotAlertHandler.h │ ├── SnapshotAlertHandler.mm │ ├── SnapshotTaker.h │ ├── SnapshotTaker.mm │ ├── SourceArt │ │ ├── ldview_icon_128x128.xcf │ │ ├── ldview_icon_16x16.xcf │ │ ├── ldview_icon_256x256.xcf │ │ ├── ldview_icon_32x32.xcf │ │ ├── ldview_icon_512x512.xcf │ │ ├── ldview_icon_512x512@2x.xcf │ │ └── ldview_icon_64x64.xcf │ ├── Statistics.h │ ├── Statistics.mm │ ├── StringOptionUI.h │ ├── StringOptionUI.mm │ ├── TableViewReorder.h │ ├── TableViewReorder.mm │ ├── Updater.h │ ├── Updater.mm │ ├── UpdaterAlertHandler.h │ ├── UpdaterAlertHandler.mm │ ├── UpdatesPage.h │ ├── UpdatesPage.mm │ ├── ViewOwnerBase.h │ ├── ViewOwnerBase.mm │ ├── builddmg.sh │ ├── en.lproj │ │ ├── Credits.rtf │ │ └── InfoPlist.strings │ └── main.m ├── LDViewQuickLook │ ├── LDViewQuickLook.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── LDViewQuickLook │ │ ├── GeneratePreviewForURL.m │ │ ├── GenerateThumbnailForURL.m │ │ ├── Info.plist │ │ └── main.c ├── LGEOTables │ └── LGEOTables.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ └── LGEOTables.xcscheme ├── MacTrans │ ├── MacTrans.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── MacTrans │ │ ├── TransLoader.cpp │ │ ├── TransLoader.h │ │ ├── XliffUpdater.cpp │ │ ├── XliffUpdater.h │ │ └── main.cpp ├── TCFoundation │ ├── TCFoundation.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── TCFoundation_Prefix.pch ├── TRE │ ├── TRE.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── TRE_Prefix.pch └── build_parts_catalog.sh ├── Makefile ├── Makefile.inc ├── ModelLoader.cpp ├── ModelLoader.h ├── ModelTreeDialog.cpp ├── ModelTreeDialog.h ├── ModelWindow.cpp ├── ModelWindow.h ├── MpdDialog.cpp ├── MpdDialog.h ├── NumberOptionUI.cpp ├── NumberOptionUI.h ├── OSMesa ├── .gitignore ├── Headerize.cpp ├── Makefile ├── OSMesa.configure.commandline.txt ├── ldview.1 ├── ldview.cpp └── ldviewrc.sample ├── OptionUI.cpp ├── OptionUI.h ├── OptionsCanvas.cpp ├── OptionsCanvas.h ├── OptionsScroller.cpp ├── OptionsScroller.h ├── PartsListDialog.cpp ├── PartsListDialog.h ├── PathOptionUI.cpp ├── PathOptionUI.h ├── QT ├── .gitignore ├── .moc │ └── .gitignore ├── .ui │ └── .gitignore ├── APKBUILD ├── About.h ├── AboutPanel.ui ├── AlertHandler.cpp ├── AlertHandler.h ├── BoundingBoxPanel.ui ├── CMakeLists.txt ├── CameraLocationPanel.ui ├── CustomizeToolbar.ui ├── ErrorPanel.ui ├── ExportOptionPanel.ui ├── ExtraDirPanel.ui ├── Help.h ├── HelpPanel.ui ├── JpegOptionsPanel.ui ├── LDView.1 ├── LDView.db ├── LDView.mak ├── LDView.pro ├── LDView.rpmlintrc ├── LDView.spec ├── LDView.ui ├── LDViewBoundingBox.cpp ├── LDViewBoundingBox.h ├── LDViewCameraLocation.cpp ├── LDViewCameraLocation.h ├── LDViewCustomizeToolbar.cpp ├── LDViewCustomizeToolbar.h ├── LDViewErrors.cpp ├── LDViewErrors.h ├── LDViewExportOption.cpp ├── LDViewExportOption.h ├── LDViewJpegOptions.cpp ├── LDViewJpegOptions.h ├── LDViewLatitudeLongitude.cpp ├── LDViewLatitudeLongitude.h ├── LDViewMainWindow.cpp ├── LDViewMainWindow.h ├── LDViewModelTree.cpp ├── LDViewModelTree.h ├── LDViewMpdModel.cpp ├── LDViewMpdModel.h ├── LDViewPartList.cpp ├── LDViewPartList.h ├── LDViewRotationCenter.cpp ├── LDViewRotationCenter.h ├── LDViewSnapshotSettings.cpp ├── LDViewSnapshotSettings.h ├── LDViewStatistics.cpp ├── LDViewStatistics.h ├── LatitudeLongitude.ui ├── ModelTreePanel.ui ├── ModelViewerWidget.cpp ├── ModelViewerWidget.h ├── MpdModelSelectionPanel.ui ├── OBS │ ├── .gitignore │ ├── LDView-qt5.dsc │ ├── LDView-qt6.dsc │ ├── LDView.dsc │ ├── _service │ ├── _service_obs_scm │ ├── appimage.yml │ ├── backup.sh │ └── flatpak.yaml ├── OpenGLExtensions.h ├── OpenGLExtensionsPanel.ui ├── PKGBUILD ├── PartList.ui ├── Preferences.cpp ├── Preferences.h ├── PreferencesPanel.ui ├── QTMain.cpp ├── QtWebClientPlugin.cpp ├── QtWebClientPlugin.h ├── RotationCenterPanel.ui ├── SnapshotAlertHandler.cpp ├── SnapshotAlertHandler.h ├── SnapshotSettingsPanel.ui ├── SnapshotTaker.cpp ├── SnapshotTaker.h ├── StatisticsPanel.ui ├── _mac.sh ├── appimage.sh ├── boost.symlink ├── boost.txt ├── builddmg.sh ├── cleanthumbnailcache.sh ├── debian │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── postinst │ ├── postrm │ ├── rules │ └── source │ │ └── local-options ├── desktop.sh ├── desktop │ ├── io.github.tcobbs.LDView.metainfo.xml │ ├── ldraw-thumbnailer │ ├── ldraw-thumbnailer.1 │ ├── ldraw.keys │ ├── ldraw.mime │ ├── ldraw.xml │ ├── ldview.applications │ ├── ldview.desktop │ └── ldview.thumbnailer ├── docker │ ├── .gitignore │ ├── Dockerfile-almalinux_latest │ ├── Dockerfile-alpine_latest │ ├── Dockerfile-appimage │ ├── Dockerfile-arch │ ├── Dockerfile-centos_8 │ ├── Dockerfile-debian_latest │ ├── Dockerfile-fedora_latest │ ├── Dockerfile-mageia_7 │ ├── Dockerfile-mageia_8 │ ├── Dockerfile-opensuse_latest │ ├── Dockerfile-oraclelinux_8 │ ├── Dockerfile-oraclelinux_9 │ ├── Dockerfile-rhel-9 │ ├── Dockerfile-rockylinux_9 │ ├── Dockerfile-ubuntu_latest │ ├── compile.sh │ ├── docker-compose.yml │ ├── docker-desktop.sh │ ├── docker.sh │ ├── install-devel-packages.sh │ ├── os-report.sh │ └── query-package.sh ├── errorimages.sh ├── freebsd.sh ├── freebsd │ ├── .gitignore │ ├── Makefile │ ├── pkg-descr │ └── pkg-plist ├── gpl.txt ├── images │ ├── LDView.icns │ ├── LDViewIcon.png │ ├── LDViewIcon128.png │ ├── LDViewIcon16.png │ ├── LDViewIcon48.png │ ├── LDViewIcon64.png │ ├── StudLogo.png │ └── toolbar_popup_arrow.ppm ├── inidiff.sh ├── kde │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.sh │ ├── ldviewthumbnailcreator.cpp │ ├── ldviewthumbnailcreator.desktop │ ├── ldviewthumbnailcreator.h │ └── test.sh ├── kde5 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.sh │ ├── ldviewthumbnailcreator.cpp │ ├── ldviewthumbnailcreator.desktop │ └── ldviewthumbnailcreator.h ├── ldraw-update.sh ├── ldraw.spec ├── ldview.desktop ├── ldview_cs.ts ├── ldview_de.ts ├── ldview_en.ts ├── ldview_hu.ts ├── ldview_it.ts ├── macdebug.sh ├── macrun.sh ├── makeall ├── makeclean ├── makedeb ├── makedebug ├── makedepend ├── makerpm ├── maketgz ├── misc.cpp ├── misc.h ├── ppconly.sh ├── rctrans.pl ├── resources.qrc ├── thumbnailtest.sh ├── todo.txt ├── toolbarimages.sh ├── trans.pl ├── uninstall.sh ├── xfce.sh └── xfce │ └── ldraw.desktop ├── Readme.txt ├── Resource.h ├── RotationCenterDialog.cpp ├── RotationCenterDialog.h ├── SSConfigure.cpp ├── SSConfigure.h ├── SSModelWindow.cpp ├── SSModelWindow.h ├── SSPreview.cpp ├── SSPreview.h ├── StatisticsDialog.cpp ├── StatisticsDialog.h ├── StepDialog.cpp ├── StepDialog.h ├── StringOptionUI.cpp ├── StringOptionUI.h ├── TCFoundation ├── .gitignore ├── ConvertUTF.c ├── ConvertUTF.h ├── Makefile ├── STB.cpp ├── TCAlert.cpp ├── TCAlert.h ├── TCAlertManager.cpp ├── TCAlertManager.h ├── TCAlertSender.h ├── TCArray.cpp ├── TCArray.h ├── TCAutoreleasePool.cpp ├── TCAutoreleasePool.h ├── TCBmpImageFormat.cpp ├── TCBmpImageFormat.h ├── TCDefines.h ├── TCDictionary.cpp ├── TCDictionary.h ├── TCFoundation.vcxproj ├── TCFoundation.vcxproj.filters ├── TCImage.cpp ├── TCImage.h ├── TCImageFormat.cpp ├── TCImageFormat.h ├── TCImageOptions.cpp ├── TCImageOptions.h ├── TCJpegImageFormat.cpp ├── TCJpegImageFormat.h ├── TCJpegOptions.cpp ├── TCJpegOptions.h ├── TCLocalStrings.cpp ├── TCLocalStrings.h ├── TCMacros.h ├── TCNetwork.cpp ├── TCNetwork.h ├── TCNetworkClient.cpp ├── TCNetworkClient.h ├── TCObject.cpp ├── TCObject.h ├── TCObjectArray.cpp ├── TCObjectArray.h ├── TCPngImageFormat.cpp ├── TCPngImageFormat.h ├── TCProgressAlert.cpp ├── TCProgressAlert.h ├── TCSortedStringArray.cpp ├── TCSortedStringArray.h ├── TCStlIncludes.h ├── TCStringArray.cpp ├── TCStringArray.h ├── TCTypedDictionary.h ├── TCTypedObjectArray.h ├── TCTypedPointerArray.h ├── TCTypedValueArray.h ├── TCUnzip.cpp ├── TCUnzip.h ├── TCUnzipStream.cpp ├── TCUnzipStream.h ├── TCUserDefaults.cpp ├── TCUserDefaults.h ├── TCVector.cpp ├── TCVector.h ├── TCWebClient.cpp ├── TCWebClient.h ├── mystring.cpp └── mystring.h ├── TRE ├── .gitignore ├── Makefile ├── TRE.vcxproj ├── TRE.vcxproj.filters ├── TREColoredShapeGroup.cpp ├── TREColoredShapeGroup.h ├── TREGL.h ├── TREGLExtensions.cpp ├── TREGLExtensions.h ├── TREMainModel.cpp ├── TREMainModel.h ├── TREModel.cpp ├── TREModel.h ├── TREShapeGroup.cpp ├── TREShapeGroup.h ├── TRESmoother.cpp ├── TRESmoother.h ├── TRESubModel.cpp ├── TRESubModel.h ├── TRETexmappedShapeGroup.cpp ├── TRETexmappedShapeGroup.h ├── TRETransShapeGroup.cpp ├── TRETransShapeGroup.h ├── TREVertexArray.cpp ├── TREVertexArray.h ├── TREVertexKey.h ├── TREVertexStore.cpp └── TREVertexStore.h ├── TbButtonInfo.cpp ├── TbButtonInfo.h ├── TestModels ├── BFC │ ├── BH.dat │ ├── BMG.dat │ ├── Cyls.dat │ ├── Cyls2.dat │ ├── Disc.dat │ ├── HollowBox.dat │ ├── HollowBoxPart.dat │ ├── Invert1.dat │ ├── Invert2.dat │ ├── InvertedTexmap.ldr │ ├── InvertedTexmap.png │ ├── MirroredHollowBox.dat │ ├── MultipleInversions.dat │ ├── Ndis.dat │ ├── NoClip.dat │ ├── SlopedCone.dat │ ├── UncertPart.dat │ └── UncertPart2.dat ├── Broken │ ├── 4939-07.mpd │ └── Normals.dat ├── C24Subs.ldr ├── Clipping │ ├── far_clip_bad.ldr │ ├── far_clip_good.ldr │ └── far_clip_still_good.ldr ├── ColorBits.ldr ├── ErrorHandling │ ├── ConditionalLineIdenticalVertices.dat │ ├── FileNotFound.dat │ ├── LineIdenticalVertices.dat │ ├── MatrixSingular.dat │ ├── PartDeterminant.dat │ ├── QuadBowTie.dat │ ├── QuadCoLinear.dat │ ├── QuadCoLinear2.dat │ ├── QuadConcave.dat │ ├── QuadIdenticalVertices.dat │ ├── QuadIdenticalVertices2.dat │ ├── QuadNonFlat.dat │ ├── TriangleIdenticalVertices.dat │ └── UnOfficialPart.dat ├── ExtraDirs │ ├── CarRef.ldr │ ├── One │ │ └── model.ldr │ └── Two │ │ └── model.ldr ├── FilenameCase │ ├── CaseTest.ldr │ └── MiXeD │ │ ├── Brick2.ldr │ │ └── brick1.ldr ├── LocalFiles │ ├── CarRef.ldr │ └── model.ldr ├── MPD │ ├── Data.ldr │ ├── DataNoPad.ldr │ └── MultiLevel.mpd ├── Mirror.ldr ├── ModelLoop.ldr ├── NonUniform │ ├── 44293t.dat │ ├── 44293w.dat │ ├── 8652-15.ldr │ ├── ell.ldr │ └── multi.ldr ├── PartsList │ └── ColorSubModels.mpd ├── PovMovedTo │ ├── Arm.ldr │ ├── SmallWheel.ldr │ ├── TrainWheels.ldr │ └── Window.ldr ├── Primitives │ ├── 48 │ │ ├── Chrd.dat │ │ ├── Cone.dat │ │ ├── Cyli.dat │ │ ├── Cyls.dat │ │ ├── Cyls2.dat │ │ ├── Disc.dat │ │ ├── Ndis.dat │ │ ├── Sphe.dat │ │ ├── TorusI.dat │ │ ├── TorusO.dat │ │ ├── TorusQ.dat │ │ ├── tm02q2000.dat │ │ ├── tm04i1000.dat │ │ ├── tm04o1000.dat │ │ └── tm04q1000.dat │ ├── Ccyli.dat │ ├── Chrd.dat │ ├── Cone.dat │ ├── Cylh.dat │ ├── Cyli.dat │ ├── Cyls.dat │ ├── Cyls2.dat │ ├── Disc.dat │ ├── Ndis.dat │ ├── Rin.dat │ ├── Sphc.dat │ ├── Sphe.dat │ ├── Studp.dat │ ├── Tndis.dat │ ├── TorusI.dat │ ├── TorusMI.dat │ ├── TorusMixed.dat │ ├── TorusO.dat │ └── TorusQ.dat ├── SmallTri.ldr ├── Spaces In Filename.ldr ├── Support │ ├── C24_1.ldr │ ├── ModelLoop1.ldr │ └── ModelLoop2.ldr ├── Transparency │ ├── Extended.dat │ ├── FakeModel.dat │ ├── FakePart.dat │ ├── Sphere.dat │ ├── Studs.dat │ ├── TorusQ.dat │ ├── Window.dat │ ├── test.dat │ └── test2.dat ├── Unicode │ ├── Yëllöw2x2.ldr │ ├── mpd.ldr │ ├── ref.ldr │ ├── rëf2.ldr │ ├── ×bb.ldr │ └── öä │ │ └── Yellow2x2.ldr ├── chrdtest.dat ├── colors.ldr ├── cylitest.dat ├── material.ldr └── ndistest.dat ├── Textures ├── SansSerif.fnt ├── StudLogo.png └── StudLogo.psd ├── ToolbarStrip.cpp ├── ToolbarStrip.h ├── Translations ├── Czech │ ├── Czech.cpp │ ├── Czech.sln │ ├── Czech.vcxproj │ ├── Czech.vcxproj.filters │ ├── Help-Czech.html │ ├── Help │ │ ├── EffectsPrefs.rtf │ │ ├── GeneralPrefs.rtf │ │ ├── GeometryPrefs.rtf │ │ ├── LDView-Czech.hpj │ │ ├── PrefSetsPrefs.rtf │ │ ├── PrimitivesPrefs.rtf │ │ ├── SaveSnapshot.rtf │ │ ├── ScreenSaverPrefs.rtf │ │ └── UpdatesPrefs.rtf │ ├── LDView-Czech.reg │ ├── LDView-DefaultLanguage.reg │ ├── LDView-EnglishUS.reg │ ├── LDView.exe.manifest │ ├── LDView.rc │ ├── LDViewMessages.ini │ ├── LangCheck.exe │ ├── ReadMe.txt │ ├── cestina.txt │ └── distrib │ │ └── LDView-Czech.hlp ├── EnglishUS │ ├── EnglishUS.cpp │ ├── EnglishUS.sln │ ├── EnglishUS.vcxproj │ ├── EnglishUS.vcxproj.filters │ ├── Help.html │ ├── Help │ │ ├── EffectsPrefs.rtf │ │ ├── GeneralPrefs.rtf │ │ ├── GeometryPrefs.rtf │ │ ├── LDView.hpj │ │ ├── PrefSetsPrefs.rtf │ │ ├── PrimitivesPrefs.rtf │ │ ├── SaveSnapshot.rtf │ │ ├── ScreenSaverPrefs.rtf │ │ └── UpdatesPrefs.rtf │ ├── LDExportMessages.ini │ ├── LDView-DefaultLanguage.reg │ ├── LDView-EnglishUS.reg │ ├── LDView.exe.manifest │ ├── LDView.rc │ ├── LDViewMessages.ini │ ├── LangCheck.exe │ ├── ReadMe.txt │ └── install.txt ├── German │ ├── German.cpp │ ├── German.sln │ ├── German.vcxproj │ ├── German.vcxproj.filters │ ├── Help-German.html │ ├── Help │ │ ├── EffectsPrefs.rtf │ │ ├── GeneralPrefs.rtf │ │ ├── GeometryPrefs.rtf │ │ ├── LDView.hpj │ │ ├── PrefSetsPrefs.rtf │ │ ├── PrimitivesPrefs.rtf │ │ ├── SaveSnapshot.rtf │ │ ├── ScreenSaverPrefs.rtf │ │ └── UpdatesPrefs.rtf │ ├── Installationshinweis.txt │ ├── LDExportMessages.ini │ ├── LDView-DefaultLanguage.reg │ ├── LDView-EnglishUS.reg │ ├── LDView-German.reg │ ├── LDView.exe.manifest │ ├── LDView.rc │ ├── LDViewMessages.ini │ ├── LangCheck.exe │ └── ReadMe.txt ├── Hungarian │ ├── Hungarian.cpp │ ├── Hungarian.sln │ ├── Hungarian.vcxproj │ ├── Hungarian.vcxproj.filters │ ├── LDExportMessages.ini │ ├── LDView-DefaultLanguage.reg │ ├── LDView-EnglishUS.reg │ ├── LDView-Hungarian.reg │ ├── LDView.exe.manifest │ ├── LDView.rc │ └── LDViewMessages.ini ├── Italian │ ├── Help-Italian.html │ ├── Help │ │ ├── EffectsPrefs.rtf │ │ ├── GeneralPrefs.rtf │ │ ├── GeometryPrefs.rtf │ │ ├── LDView.hpj │ │ ├── PrefSetsPrefs.rtf │ │ ├── PrimitivesPrefs.rtf │ │ ├── SaveSnapshot.rtf │ │ ├── ScreenSaverPrefs.rtf │ │ └── UpdatesPrefs.rtf │ ├── Installazione.txt │ ├── Italian.cpp │ ├── Italian.sln │ ├── Italian.vcxproj │ ├── Italian.vcxproj.filters │ ├── LDExportMessages.ini │ ├── LDView-DefaultLanguage.reg │ ├── LDView-EnglishUS.reg │ ├── LDView-Italian.reg │ ├── LDView.exe.manifest │ ├── LDView.rc │ ├── LDViewMessages.ini │ ├── LangCheck.exe │ └── ReadMe.txt └── ResourceTrans │ ├── ResourceTrans.sln │ └── ResourceTrans │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── MismatchForm.Designer.cs │ ├── MismatchForm.cs │ ├── MismatchForm.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── ResourceTrans.csproj ├── UnMirrorStuds ├── .gitignore ├── Makefile ├── UnMirrorStuds.cpp ├── UnMirrorStuds.h ├── UnMirrorStuds.rc ├── UnMirrorStuds.vcxproj ├── UnMirrorStuds.vcxproj.filters ├── UnMirrorStudsMain.cpp └── resource.h ├── WinWebClientPlugin.cpp ├── WinWebClientPlugin.h ├── appveyor.yml ├── boost.1350.sh ├── crowdin.yml ├── dpiv2.manifest ├── include ├── GL │ ├── glext.h │ └── wglext.h ├── zconf.h └── zlib.h ├── install.txt ├── lib ├── MacOSX │ ├── lib3ds.a │ ├── lib3dsu.a │ ├── libjpeg.a │ ├── libjpegu.a │ ├── libpng16.a │ └── libpng16u.a ├── lib3ds-64.a ├── lib3ds-vs2017.lib ├── lib3ds.a ├── libjpeg-vs2017.lib ├── libpng16-vs2017.lib ├── x64 │ ├── lib3ds-vs2019.lib │ ├── libjpeg-vs2019.lib │ ├── libpng16-vs2019.lib │ └── zlib-vs2019.lib └── zlib-vs2017.lib ├── license.txt ├── license2.txt └── m6459.ldr /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /3rdParty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/.gitignore -------------------------------------------------------------------------------- /3rdParty/gl2ps/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | .obj 3 | -------------------------------------------------------------------------------- /3rdParty/gl2ps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/gl2ps/COPYING.GL2PS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/COPYING.GL2PS -------------------------------------------------------------------------------- /3rdParty/gl2ps/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/COPYING.LGPL -------------------------------------------------------------------------------- /3rdParty/gl2ps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/Makefile -------------------------------------------------------------------------------- /3rdParty/gl2ps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/README.txt -------------------------------------------------------------------------------- /3rdParty/gl2ps/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/TODO.txt -------------------------------------------------------------------------------- /3rdParty/gl2ps/gl2ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/gl2ps.c -------------------------------------------------------------------------------- /3rdParty/gl2ps/gl2ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/gl2ps.h -------------------------------------------------------------------------------- /3rdParty/gl2ps/gl2ps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/gl2ps.pdf -------------------------------------------------------------------------------- /3rdParty/gl2ps/gl2ps.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/gl2ps.tex -------------------------------------------------------------------------------- /3rdParty/gl2ps/gl2ps.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/gl2ps.vcxproj -------------------------------------------------------------------------------- /3rdParty/gl2ps/gl2psTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/gl2psTest.c -------------------------------------------------------------------------------- /3rdParty/gl2ps/gl2psTestSimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/gl2ps/gl2psTestSimple.c -------------------------------------------------------------------------------- /3rdParty/lib3ds.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/lib3ds.cmd -------------------------------------------------------------------------------- /3rdParty/lib3ds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/lib3ds.sh -------------------------------------------------------------------------------- /3rdParty/lib3ds/lib3ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/lib3ds/lib3ds.h -------------------------------------------------------------------------------- /3rdParty/libjpeg-turbo.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libjpeg-turbo.cmd -------------------------------------------------------------------------------- /3rdParty/libjpeg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libjpeg.cmd -------------------------------------------------------------------------------- /3rdParty/libjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libjpeg/jinclude.h -------------------------------------------------------------------------------- /3rdParty/libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /3rdParty/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /3rdParty/libpng.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libpng.cmd -------------------------------------------------------------------------------- /3rdParty/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libpng/png.h -------------------------------------------------------------------------------- /3rdParty/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libpng/pngconf.h -------------------------------------------------------------------------------- /3rdParty/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/libpng/pngpriv.h -------------------------------------------------------------------------------- /3rdParty/minizip/.gitignore: -------------------------------------------------------------------------------- 1 | /libminizip.a 2 | *.o 3 | -------------------------------------------------------------------------------- /3rdParty/minizip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/Makefile -------------------------------------------------------------------------------- /3rdParty/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/crypt.h -------------------------------------------------------------------------------- /3rdParty/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/ioapi.c -------------------------------------------------------------------------------- /3rdParty/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/ioapi.h -------------------------------------------------------------------------------- /3rdParty/minizip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/iowin32.c -------------------------------------------------------------------------------- /3rdParty/minizip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/iowin32.h -------------------------------------------------------------------------------- /3rdParty/minizip/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/make_vms.com -------------------------------------------------------------------------------- /3rdParty/minizip/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/miniunz.c -------------------------------------------------------------------------------- /3rdParty/minizip/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/minizip.c -------------------------------------------------------------------------------- /3rdParty/minizip/minizip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/minizip.vcxproj -------------------------------------------------------------------------------- /3rdParty/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/mztools.c -------------------------------------------------------------------------------- /3rdParty/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/mztools.h -------------------------------------------------------------------------------- /3rdParty/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/unzip.c -------------------------------------------------------------------------------- /3rdParty/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/unzip.h -------------------------------------------------------------------------------- /3rdParty/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/zip.c -------------------------------------------------------------------------------- /3rdParty/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/minizip/zip.h -------------------------------------------------------------------------------- /3rdParty/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/stb/README.md -------------------------------------------------------------------------------- /3rdParty/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/stb/stb_image_resize.h -------------------------------------------------------------------------------- /3rdParty/tinyxml.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml.cmd -------------------------------------------------------------------------------- /3rdParty/tinyxml/.gitignore: -------------------------------------------------------------------------------- 1 | lib*.a 2 | -------------------------------------------------------------------------------- /3rdParty/tinyxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/Makefile -------------------------------------------------------------------------------- /3rdParty/tinyxml/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/changes.txt -------------------------------------------------------------------------------- /3rdParty/tinyxml/docs/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/docs/files.html -------------------------------------------------------------------------------- /3rdParty/tinyxml/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/docs/index.html -------------------------------------------------------------------------------- /3rdParty/tinyxml/docs/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/docs/pages.html -------------------------------------------------------------------------------- /3rdParty/tinyxml/docs/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/docs/tab_b.gif -------------------------------------------------------------------------------- /3rdParty/tinyxml/docs/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/docs/tab_l.gif -------------------------------------------------------------------------------- /3rdParty/tinyxml/docs/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/docs/tab_r.gif -------------------------------------------------------------------------------- /3rdParty/tinyxml/docs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/docs/tabs.css -------------------------------------------------------------------------------- /3rdParty/tinyxml/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/makefile.vc -------------------------------------------------------------------------------- /3rdParty/tinyxml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/readme.txt -------------------------------------------------------------------------------- /3rdParty/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /3rdParty/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/tinystr.h -------------------------------------------------------------------------------- /3rdParty/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /3rdParty/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /3rdParty/tinyxml/tinyxml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/tinyxml.sln -------------------------------------------------------------------------------- /3rdParty/tinyxml/tinyxml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/tinyxml.vcxproj -------------------------------------------------------------------------------- /3rdParty/tinyxml/utf8test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/utf8test.gif -------------------------------------------------------------------------------- /3rdParty/tinyxml/utf8test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/utf8test.xml -------------------------------------------------------------------------------- /3rdParty/tinyxml/xmltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/tinyxml/xmltest.cpp -------------------------------------------------------------------------------- /3rdParty/vbox-ldview.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/vbox-ldview.cmd -------------------------------------------------------------------------------- /3rdParty/zlib-ng.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/zlib-ng.cmd -------------------------------------------------------------------------------- /3rdParty/zlib.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/3rdParty/zlib.cmd -------------------------------------------------------------------------------- /8464.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/8464.mpd -------------------------------------------------------------------------------- /BoolOptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/BoolOptionUI.cpp -------------------------------------------------------------------------------- /BoolOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/BoolOptionUI.h -------------------------------------------------------------------------------- /BoundingBoxDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/BoundingBoxDialog.cpp -------------------------------------------------------------------------------- /BoundingBoxDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/BoundingBoxDialog.h -------------------------------------------------------------------------------- /Build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Build.txt -------------------------------------------------------------------------------- /CUI/CUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUI.vcxproj -------------------------------------------------------------------------------- /CUI/CUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUI.vcxproj.filters -------------------------------------------------------------------------------- /CUI/CUIButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIButton.cpp -------------------------------------------------------------------------------- /CUI/CUIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIButton.h -------------------------------------------------------------------------------- /CUI/CUIColorButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIColorButton.cpp -------------------------------------------------------------------------------- /CUI/CUIColorButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIColorButton.h -------------------------------------------------------------------------------- /CUI/CUIDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIDefines.h -------------------------------------------------------------------------------- /CUI/CUIDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIDialog.cpp -------------------------------------------------------------------------------- /CUI/CUIDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIDialog.h -------------------------------------------------------------------------------- /CUI/CUIModuleHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIModuleHolder.h -------------------------------------------------------------------------------- /CUI/CUIOGLWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIOGLWindow.cpp -------------------------------------------------------------------------------- /CUI/CUIOGLWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIOGLWindow.h -------------------------------------------------------------------------------- /CUI/CUIPropertySheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIPropertySheet.cpp -------------------------------------------------------------------------------- /CUI/CUIPropertySheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIPropertySheet.h -------------------------------------------------------------------------------- /CUI/CUIScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIScaler.cpp -------------------------------------------------------------------------------- /CUI/CUIScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIScaler.h -------------------------------------------------------------------------------- /CUI/CUISubWindowInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUISubWindowInfo.cpp -------------------------------------------------------------------------------- /CUI/CUISubWindowInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUISubWindowInfo.h -------------------------------------------------------------------------------- /CUI/CUIThemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIThemes.cpp -------------------------------------------------------------------------------- /CUI/CUIThemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIThemes.h -------------------------------------------------------------------------------- /CUI/CUIWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIWindow.cpp -------------------------------------------------------------------------------- /CUI/CUIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIWindow.h -------------------------------------------------------------------------------- /CUI/CUIWindowList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIWindowList.cpp -------------------------------------------------------------------------------- /CUI/CUIWindowList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIWindowList.h -------------------------------------------------------------------------------- /CUI/CUIWindowListEnumerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIWindowListEnumerator.cpp -------------------------------------------------------------------------------- /CUI/CUIWindowListEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIWindowListEnumerator.h -------------------------------------------------------------------------------- /CUI/CUIWindowResizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIWindowResizer.cpp -------------------------------------------------------------------------------- /CUI/CUIWindowResizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CUI/CUIWindowResizer.h -------------------------------------------------------------------------------- /CameraLocationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CameraLocationDialog.cpp -------------------------------------------------------------------------------- /CameraLocationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CameraLocationDialog.h -------------------------------------------------------------------------------- /ChangeHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ChangeHistory.html -------------------------------------------------------------------------------- /CommandLinesList.spin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CommandLinesList.spin1.txt -------------------------------------------------------------------------------- /CommandLinesList.spin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/CommandLinesList.spin2.txt -------------------------------------------------------------------------------- /ContextHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ContextHelp.h -------------------------------------------------------------------------------- /EnumOptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/EnumOptionUI.cpp -------------------------------------------------------------------------------- /EnumOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/EnumOptionUI.h -------------------------------------------------------------------------------- /ExportOptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ExportOptionsDialog.cpp -------------------------------------------------------------------------------- /ExportOptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ExportOptionsDialog.h -------------------------------------------------------------------------------- /FloatOptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/FloatOptionUI.cpp -------------------------------------------------------------------------------- /FloatOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/FloatOptionUI.h -------------------------------------------------------------------------------- /GroupOptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/GroupOptionUI.cpp -------------------------------------------------------------------------------- /GroupOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/GroupOptionUI.h -------------------------------------------------------------------------------- /Help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help.html -------------------------------------------------------------------------------- /Help/.gitignore: -------------------------------------------------------------------------------- 1 | LDVIEW.HLP 2 | -------------------------------------------------------------------------------- /Help/EffectsPrefs.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/EffectsPrefs.rtf -------------------------------------------------------------------------------- /Help/GeneralPrefs.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/GeneralPrefs.rtf -------------------------------------------------------------------------------- /Help/GeometryPrefs.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/GeometryPrefs.rtf -------------------------------------------------------------------------------- /Help/LDView.hpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/LDView.hpj -------------------------------------------------------------------------------- /Help/PrefSetsPrefs.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/PrefSetsPrefs.rtf -------------------------------------------------------------------------------- /Help/PrimitivesPrefs.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/PrimitivesPrefs.rtf -------------------------------------------------------------------------------- /Help/SaveSnapshot.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/SaveSnapshot.rtf -------------------------------------------------------------------------------- /Help/ScreenSaverPrefs.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/ScreenSaverPrefs.rtf -------------------------------------------------------------------------------- /Help/UpdatesPrefs.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Help/UpdatesPrefs.rtf -------------------------------------------------------------------------------- /Icons/LDView-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LDView-background.png -------------------------------------------------------------------------------- /Icons/LDView-background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LDView-background.tiff -------------------------------------------------------------------------------- /Icons/LDViewFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LDViewFont.png -------------------------------------------------------------------------------- /Icons/LDViewIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LDViewIcon.gif -------------------------------------------------------------------------------- /Icons/LDViewIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LDViewIcon.ico -------------------------------------------------------------------------------- /Icons/LDrawIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LDrawIcon.ico -------------------------------------------------------------------------------- /Icons/LightAngleLL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLL.ico -------------------------------------------------------------------------------- /Icons/LightAngleLL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLL.png -------------------------------------------------------------------------------- /Icons/LightAngleLL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLL@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleLLOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLLOff.png -------------------------------------------------------------------------------- /Icons/LightAngleLLOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLLOff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleLM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLM.ico -------------------------------------------------------------------------------- /Icons/LightAngleLM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLM.png -------------------------------------------------------------------------------- /Icons/LightAngleLM@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLM@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleLMOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLMOff.png -------------------------------------------------------------------------------- /Icons/LightAngleLMOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLMOff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleLR.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLR.ico -------------------------------------------------------------------------------- /Icons/LightAngleLR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLR.png -------------------------------------------------------------------------------- /Icons/LightAngleLR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLR@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleLROff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLROff.png -------------------------------------------------------------------------------- /Icons/LightAngleLROff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleLROff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleML.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleML.ico -------------------------------------------------------------------------------- /Icons/LightAngleML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleML.png -------------------------------------------------------------------------------- /Icons/LightAngleML@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleML@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleMLOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMLOff.png -------------------------------------------------------------------------------- /Icons/LightAngleMLOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMLOff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleMM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMM.ico -------------------------------------------------------------------------------- /Icons/LightAngleMM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMM.png -------------------------------------------------------------------------------- /Icons/LightAngleMM@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMM@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleMMOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMMOff.png -------------------------------------------------------------------------------- /Icons/LightAngleMMOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMMOff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleMR.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMR.ico -------------------------------------------------------------------------------- /Icons/LightAngleMR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMR.png -------------------------------------------------------------------------------- /Icons/LightAngleMR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMR@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleMROff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMROff.png -------------------------------------------------------------------------------- /Icons/LightAngleMROff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleMROff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleUL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUL.ico -------------------------------------------------------------------------------- /Icons/LightAngleUL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUL.png -------------------------------------------------------------------------------- /Icons/LightAngleUL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUL@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleULOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleULOff.png -------------------------------------------------------------------------------- /Icons/LightAngleULOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleULOff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleUM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUM.ico -------------------------------------------------------------------------------- /Icons/LightAngleUM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUM.png -------------------------------------------------------------------------------- /Icons/LightAngleUM@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUM@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleUMOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUMOff.png -------------------------------------------------------------------------------- /Icons/LightAngleUMOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUMOff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleUR.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUR.ico -------------------------------------------------------------------------------- /Icons/LightAngleUR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUR.png -------------------------------------------------------------------------------- /Icons/LightAngleUR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUR@2x.png -------------------------------------------------------------------------------- /Icons/LightAngleUROff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUROff.png -------------------------------------------------------------------------------- /Icons/LightAngleUROff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngleUROff@2x.png -------------------------------------------------------------------------------- /Icons/LightAngles.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/LightAngles.psd -------------------------------------------------------------------------------- /Icons/MPDIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/MPDIcon.ico -------------------------------------------------------------------------------- /Icons/SanSerif@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/SanSerif@2x.png -------------------------------------------------------------------------------- /Icons/error_colinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_colinear.png -------------------------------------------------------------------------------- /Icons/error_colinear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_colinear@2x.png -------------------------------------------------------------------------------- /Icons/error_concave_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_concave_quad.png -------------------------------------------------------------------------------- /Icons/error_concave_quad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_concave_quad@2x.png -------------------------------------------------------------------------------- /Icons/error_determinant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_determinant.png -------------------------------------------------------------------------------- /Icons/error_determinant@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_determinant@2x.png -------------------------------------------------------------------------------- /Icons/error_dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_dots.png -------------------------------------------------------------------------------- /Icons/error_dots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_dots@2x.png -------------------------------------------------------------------------------- /Icons/error_fnf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_fnf.png -------------------------------------------------------------------------------- /Icons/error_fnf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_fnf@2x.png -------------------------------------------------------------------------------- /Icons/error_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_info.png -------------------------------------------------------------------------------- /Icons/error_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_info@2x.png -------------------------------------------------------------------------------- /Icons/error_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_loop.png -------------------------------------------------------------------------------- /Icons/error_loop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_loop@2x.png -------------------------------------------------------------------------------- /Icons/error_matching_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_matching_points.png -------------------------------------------------------------------------------- /Icons/error_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_matrix.png -------------------------------------------------------------------------------- /Icons/error_matrix@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_matrix@2x.png -------------------------------------------------------------------------------- /Icons/error_non_flat_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_non_flat_quad.png -------------------------------------------------------------------------------- /Icons/error_non_flat_quad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_non_flat_quad@2x.png -------------------------------------------------------------------------------- /Icons/error_opengl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_opengl.png -------------------------------------------------------------------------------- /Icons/error_parse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_parse.png -------------------------------------------------------------------------------- /Icons/error_parse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_parse@2x.png -------------------------------------------------------------------------------- /Icons/error_vertex_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_vertex_order.png -------------------------------------------------------------------------------- /Icons/error_vertex_order@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/error_vertex_order@2x.png -------------------------------------------------------------------------------- /Icons/examine.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/examine.ico -------------------------------------------------------------------------------- /Icons/extra_dirs_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/extra_dirs_toolbar.png -------------------------------------------------------------------------------- /Icons/extra_dirs_toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/extra_dirs_toolbar@2x.png -------------------------------------------------------------------------------- /Icons/flythrou.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/flythrou.ico -------------------------------------------------------------------------------- /Icons/screen_saver_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/screen_saver_preview.png -------------------------------------------------------------------------------- /Icons/toolbar_all_cond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_all_cond.png -------------------------------------------------------------------------------- /Icons/toolbar_all_cond@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_all_cond@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_axes.png -------------------------------------------------------------------------------- /Icons/toolbar_axes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_axes@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_bfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_bfc.png -------------------------------------------------------------------------------- /Icons/toolbar_bfc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_bfc@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_bfc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_bfc_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_bfc_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_bfc_dark@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_cond_ctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_cond_ctrl.png -------------------------------------------------------------------------------- /Icons/toolbar_cond_ctrl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_cond_ctrl@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_cond_ctrl_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_cond_ctrl_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_edge.png -------------------------------------------------------------------------------- /Icons/toolbar_edge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_edge@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_errors.png -------------------------------------------------------------------------------- /Icons/toolbar_errors@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_errors@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_examine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_examine.png -------------------------------------------------------------------------------- /Icons/toolbar_examine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_examine@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_export.png -------------------------------------------------------------------------------- /Icons/toolbar_export@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_export@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_flat.png -------------------------------------------------------------------------------- /Icons/toolbar_flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_flat@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_fly.png -------------------------------------------------------------------------------- /Icons/toolbar_fly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_fly@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_fullscreen.png -------------------------------------------------------------------------------- /Icons/toolbar_fullscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_fullscreen@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_help.png -------------------------------------------------------------------------------- /Icons/toolbar_help@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_help@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_latlon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_latlon.png -------------------------------------------------------------------------------- /Icons/toolbar_latlon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_latlon@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_latlonrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_latlonrot.png -------------------------------------------------------------------------------- /Icons/toolbar_latlonrot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_latlonrot@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_light.png -------------------------------------------------------------------------------- /Icons/toolbar_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_light@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_low_studs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_low_studs.png -------------------------------------------------------------------------------- /Icons/toolbar_low_studs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_low_studs@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_model_bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_model_bbox.png -------------------------------------------------------------------------------- /Icons/toolbar_model_bbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_model_bbox@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_model_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_model_tree.png -------------------------------------------------------------------------------- /Icons/toolbar_model_tree@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_model_tree@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_mpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_mpd.png -------------------------------------------------------------------------------- /Icons/toolbar_mpd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_mpd@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_mpd_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_mpd_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_mpd_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_mpd_dark@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_open.png -------------------------------------------------------------------------------- /Icons/toolbar_open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_open@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_open_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_open_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_open_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_open_dark@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_part_bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_part_bbox.png -------------------------------------------------------------------------------- /Icons/toolbar_part_bbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_part_bbox@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_partslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_partslist.png -------------------------------------------------------------------------------- /Icons/toolbar_partslist@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_partslist@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_povcamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_povcamera.png -------------------------------------------------------------------------------- /Icons/toolbar_povcamera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_povcamera@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_povcamera_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_povcamera_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_preferences.png -------------------------------------------------------------------------------- /Icons/toolbar_preferences@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_preferences@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_primsubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_primsubs.png -------------------------------------------------------------------------------- /Icons/toolbar_primsubs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_primsubs@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_print.png -------------------------------------------------------------------------------- /Icons/toolbar_print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_print@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_random.png -------------------------------------------------------------------------------- /Icons/toolbar_random@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_random@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_refresh.png -------------------------------------------------------------------------------- /Icons/toolbar_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_refresh@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_refresh_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_reload.png -------------------------------------------------------------------------------- /Icons/toolbar_reload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_reload@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_rightsideup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_rightsideup.png -------------------------------------------------------------------------------- /Icons/toolbar_rightsideup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_rightsideup@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_seams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_seams.png -------------------------------------------------------------------------------- /Icons/toolbar_seams@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_seams@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_smooth.png -------------------------------------------------------------------------------- /Icons/toolbar_smooth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_smooth@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_snapshot.png -------------------------------------------------------------------------------- /Icons/toolbar_snapshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_snapshot@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_snapshot_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_snapshot_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_step_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_step_first.png -------------------------------------------------------------------------------- /Icons/toolbar_step_first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_step_first@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_step_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_step_last.png -------------------------------------------------------------------------------- /Icons/toolbar_step_last@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_step_last@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_step_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_step_next.png -------------------------------------------------------------------------------- /Icons/toolbar_step_next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_step_next@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_step_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_step_prev.png -------------------------------------------------------------------------------- /Icons/toolbar_step_prev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_step_prev@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_stud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_stud.png -------------------------------------------------------------------------------- /Icons/toolbar_stud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_stud@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_texmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_texmaps.png -------------------------------------------------------------------------------- /Icons/toolbar_texmaps@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_texmaps@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_topmost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_topmost.png -------------------------------------------------------------------------------- /Icons/toolbar_topmost@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_topmost@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_trans_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_trans_default.png -------------------------------------------------------------------------------- /Icons/toolbar_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view.png -------------------------------------------------------------------------------- /Icons/toolbar_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_view_2_3rds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_2_3rds.png -------------------------------------------------------------------------------- /Icons/toolbar_view_2_3rds@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_2_3rds@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_view_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_back.png -------------------------------------------------------------------------------- /Icons/toolbar_view_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_back@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_view_back_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_back_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_view_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_bottom.png -------------------------------------------------------------------------------- /Icons/toolbar_view_bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_bottom@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_view_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_front.png -------------------------------------------------------------------------------- /Icons/toolbar_view_front@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_front@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_view_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_left.png -------------------------------------------------------------------------------- /Icons/toolbar_view_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_left@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_view_left_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_left_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_view_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_right.png -------------------------------------------------------------------------------- /Icons/toolbar_view_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_right@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_view_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_top.png -------------------------------------------------------------------------------- /Icons/toolbar_view_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_top@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_view_top_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_view_top_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_walk.png -------------------------------------------------------------------------------- /Icons/toolbar_walk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_walk@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_walk_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_walk_dark.png -------------------------------------------------------------------------------- /Icons/toolbar_walk_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_walk_dark@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_wire_cutaway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_wire_cutaway.png -------------------------------------------------------------------------------- /Icons/toolbar_wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_wireframe.png -------------------------------------------------------------------------------- /Icons/toolbar_wireframe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_wireframe@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_zoom2fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_zoom2fit.png -------------------------------------------------------------------------------- /Icons/toolbar_zoom2fit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_zoom2fit@2x.png -------------------------------------------------------------------------------- /Icons/toolbar_zoom2fit_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Icons/toolbar_zoom2fit_dark.png -------------------------------------------------------------------------------- /JpegOptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/JpegOptionsDialog.cpp -------------------------------------------------------------------------------- /JpegOptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/JpegOptionsDialog.h -------------------------------------------------------------------------------- /LDExporter/.gitignore: -------------------------------------------------------------------------------- 1 | lib*.a 2 | -------------------------------------------------------------------------------- /LDExporter/LD3dsExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LD3dsExporter.cpp -------------------------------------------------------------------------------- /LDExporter/LD3dsExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LD3dsExporter.h -------------------------------------------------------------------------------- /LDExporter/LDExportMessages.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDExportMessages.ini -------------------------------------------------------------------------------- /LDExporter/LDExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDExporter.cpp -------------------------------------------------------------------------------- /LDExporter/LDExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDExporter.h -------------------------------------------------------------------------------- /LDExporter/LDExporter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDExporter.vcxproj -------------------------------------------------------------------------------- /LDExporter/LDExporterSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDExporterSetting.cpp -------------------------------------------------------------------------------- /LDExporter/LDExporterSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDExporterSetting.h -------------------------------------------------------------------------------- /LDExporter/LDLdrExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDLdrExporter.cpp -------------------------------------------------------------------------------- /LDExporter/LDLdrExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDLdrExporter.h -------------------------------------------------------------------------------- /LDExporter/LDPovExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDPovExporter.cpp -------------------------------------------------------------------------------- /LDExporter/LDPovExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDPovExporter.h -------------------------------------------------------------------------------- /LDExporter/LDStlExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDStlExporter.cpp -------------------------------------------------------------------------------- /LDExporter/LDStlExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LDStlExporter.h -------------------------------------------------------------------------------- /LDExporter/LGEO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/LGEO.xml -------------------------------------------------------------------------------- /LDExporter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/Makefile -------------------------------------------------------------------------------- /LDExporter/lg_elements.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDExporter/lg_elements.lst -------------------------------------------------------------------------------- /LDLib/.gitignore: -------------------------------------------------------------------------------- 1 | lib*.a 2 | -------------------------------------------------------------------------------- /LDLib/LDConsoleAlertHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDConsoleAlertHandler.cpp -------------------------------------------------------------------------------- /LDLib/LDConsoleAlertHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDConsoleAlertHandler.h -------------------------------------------------------------------------------- /LDLib/LDHtmlInventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDHtmlInventory.cpp -------------------------------------------------------------------------------- /LDLib/LDHtmlInventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDHtmlInventory.h -------------------------------------------------------------------------------- /LDLib/LDInputHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDInputHandler.cpp -------------------------------------------------------------------------------- /LDLib/LDInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDInputHandler.h -------------------------------------------------------------------------------- /LDLib/LDLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDLib.vcxproj -------------------------------------------------------------------------------- /LDLib/LDLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDLib.vcxproj.filters -------------------------------------------------------------------------------- /LDLib/LDLibraryUpdateInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDLibraryUpdateInfo.cpp -------------------------------------------------------------------------------- /LDLib/LDLibraryUpdateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDLibraryUpdateInfo.h -------------------------------------------------------------------------------- /LDLib/LDLibraryUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDLibraryUpdater.cpp -------------------------------------------------------------------------------- /LDLib/LDLibraryUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDLibraryUpdater.h -------------------------------------------------------------------------------- /LDLib/LDModelParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDModelParser.cpp -------------------------------------------------------------------------------- /LDLib/LDModelParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDModelParser.h -------------------------------------------------------------------------------- /LDLib/LDModelTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDModelTree.cpp -------------------------------------------------------------------------------- /LDLib/LDModelTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDModelTree.h -------------------------------------------------------------------------------- /LDLib/LDObiInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDObiInfo.cpp -------------------------------------------------------------------------------- /LDLib/LDObiInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDObiInfo.h -------------------------------------------------------------------------------- /LDLib/LDPartCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDPartCount.cpp -------------------------------------------------------------------------------- /LDLib/LDPartCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDPartCount.h -------------------------------------------------------------------------------- /LDLib/LDPartsList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDPartsList.cpp -------------------------------------------------------------------------------- /LDLib/LDPartsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDPartsList.h -------------------------------------------------------------------------------- /LDLib/LDPreferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDPreferences.cpp -------------------------------------------------------------------------------- /LDLib/LDPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDPreferences.h -------------------------------------------------------------------------------- /LDLib/LDSnapshotTaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDSnapshotTaker.cpp -------------------------------------------------------------------------------- /LDLib/LDSnapshotTaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDSnapshotTaker.h -------------------------------------------------------------------------------- /LDLib/LDUserDefaultsKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDUserDefaultsKeys.h -------------------------------------------------------------------------------- /LDLib/LDViewPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDViewPoint.cpp -------------------------------------------------------------------------------- /LDLib/LDViewPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDViewPoint.h -------------------------------------------------------------------------------- /LDLib/LDrawModelViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDrawModelViewer.cpp -------------------------------------------------------------------------------- /LDLib/LDrawModelViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/LDrawModelViewer.h -------------------------------------------------------------------------------- /LDLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLib/Makefile -------------------------------------------------------------------------------- /LDLoader/.gitignore: -------------------------------------------------------------------------------- 1 | lib*.a 2 | -------------------------------------------------------------------------------- /LDLoader/LDLActionLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLActionLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLActionLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLActionLine.h -------------------------------------------------------------------------------- /LDLoader/LDLAutoCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLAutoCamera.cpp -------------------------------------------------------------------------------- /LDLoader/LDLAutoCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLAutoCamera.h -------------------------------------------------------------------------------- /LDLoader/LDLCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLCamera.cpp -------------------------------------------------------------------------------- /LDLoader/LDLCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLCamera.h -------------------------------------------------------------------------------- /LDLoader/LDLCommentLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLCommentLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLCommentLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLCommentLine.h -------------------------------------------------------------------------------- /LDLoader/LDLEmptyLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLEmptyLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLEmptyLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLEmptyLine.h -------------------------------------------------------------------------------- /LDLoader/LDLError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLError.cpp -------------------------------------------------------------------------------- /LDLoader/LDLError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLError.h -------------------------------------------------------------------------------- /LDLoader/LDLFacing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLFacing.cpp -------------------------------------------------------------------------------- /LDLoader/LDLFacing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLFacing.h -------------------------------------------------------------------------------- /LDLoader/LDLFileLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLFileLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLFileLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLFileLine.h -------------------------------------------------------------------------------- /LDLoader/LDLFindFileAlert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLFindFileAlert.cpp -------------------------------------------------------------------------------- /LDLoader/LDLFindFileAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLFindFileAlert.h -------------------------------------------------------------------------------- /LDLoader/LDLLineLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLLineLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLLineLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLLineLine.h -------------------------------------------------------------------------------- /LDLoader/LDLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLMacros.h -------------------------------------------------------------------------------- /LDLoader/LDLMainModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLMainModel.cpp -------------------------------------------------------------------------------- /LDLoader/LDLMainModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLMainModel.h -------------------------------------------------------------------------------- /LDLoader/LDLModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLModel.cpp -------------------------------------------------------------------------------- /LDLoader/LDLModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLModel.h -------------------------------------------------------------------------------- /LDLoader/LDLModelLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLModelLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLModelLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLModelLine.h -------------------------------------------------------------------------------- /LDLoader/LDLPalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLPalette.cpp -------------------------------------------------------------------------------- /LDLoader/LDLPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLPalette.h -------------------------------------------------------------------------------- /LDLoader/LDLPrimitiveCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLPrimitiveCheck.cpp -------------------------------------------------------------------------------- /LDLoader/LDLPrimitiveCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLPrimitiveCheck.h -------------------------------------------------------------------------------- /LDLoader/LDLQuadLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLQuadLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLQuadLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLQuadLine.h -------------------------------------------------------------------------------- /LDLoader/LDLShapeLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLShapeLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLShapeLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLShapeLine.h -------------------------------------------------------------------------------- /LDLoader/LDLTriangleLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLTriangleLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLTriangleLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLTriangleLine.h -------------------------------------------------------------------------------- /LDLoader/LDLUnknownLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLUnknownLine.cpp -------------------------------------------------------------------------------- /LDLoader/LDLUnknownLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLUnknownLine.h -------------------------------------------------------------------------------- /LDLoader/LDLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDLoader.vcxproj -------------------------------------------------------------------------------- /LDLoader/LDrawInP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDrawInP.h -------------------------------------------------------------------------------- /LDLoader/LDrawIni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDrawIni.c -------------------------------------------------------------------------------- /LDLoader/LDrawIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/LDrawIni.h -------------------------------------------------------------------------------- /LDLoader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDLoader/Makefile -------------------------------------------------------------------------------- /LDVExtensionsSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVExtensionsSetup.cpp -------------------------------------------------------------------------------- /LDVExtensionsSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVExtensionsSetup.h -------------------------------------------------------------------------------- /LDVLib/LDVLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVLib/LDVLib.cpp -------------------------------------------------------------------------------- /LDVLib/LDVLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVLib/LDVLib.h -------------------------------------------------------------------------------- /LDVLib/LDVLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVLib/LDVLib.rc -------------------------------------------------------------------------------- /LDVLib/LDVLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVLib/LDVLib.vcxproj -------------------------------------------------------------------------------- /LDVLib/LDVLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVLib/LDVLib.vcxproj.filters -------------------------------------------------------------------------------- /LDVLib/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVLib/StdAfx.cpp -------------------------------------------------------------------------------- /LDVLib/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVLib/StdAfx.h -------------------------------------------------------------------------------- /LDVLib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDVLib/resource.h -------------------------------------------------------------------------------- /LDView Home Page.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView Home Page.url -------------------------------------------------------------------------------- /LDView.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView.exe.manifest -------------------------------------------------------------------------------- /LDView.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView.iss -------------------------------------------------------------------------------- /LDView.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView.rc -------------------------------------------------------------------------------- /LDView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView.sln -------------------------------------------------------------------------------- /LDView.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView.vcxproj -------------------------------------------------------------------------------- /LDView.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView.vcxproj.filters -------------------------------------------------------------------------------- /LDView64.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView64.exe.manifest -------------------------------------------------------------------------------- /LDView64.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDView64.iss -------------------------------------------------------------------------------- /LDViewA.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewA.iss -------------------------------------------------------------------------------- /LDViewMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewMain.cpp -------------------------------------------------------------------------------- /LDViewMessages.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewMessages.ini -------------------------------------------------------------------------------- /LDViewPreferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewPreferences.cpp -------------------------------------------------------------------------------- /LDViewPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewPreferences.h -------------------------------------------------------------------------------- /LDViewThumbs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/.gitignore -------------------------------------------------------------------------------- /LDViewThumbs/Build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/Build.txt -------------------------------------------------------------------------------- /LDViewThumbs/LDViewThumbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/LDViewThumbs.cpp -------------------------------------------------------------------------------- /LDViewThumbs/LDViewThumbs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/LDViewThumbs.def -------------------------------------------------------------------------------- /LDViewThumbs/LDViewThumbs.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/LDViewThumbs.idl -------------------------------------------------------------------------------- /LDViewThumbs/LDViewThumbs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/LDViewThumbs.rc -------------------------------------------------------------------------------- /LDViewThumbs/LDViewThumbs64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/LDViewThumbs64.def -------------------------------------------------------------------------------- /LDViewThumbs/LDViewThumbsA.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/LDViewThumbsA.def -------------------------------------------------------------------------------- /LDViewThumbs/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/StdAfx.cpp -------------------------------------------------------------------------------- /LDViewThumbs/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/StdAfx.h -------------------------------------------------------------------------------- /LDViewThumbs/dlldatax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/dlldatax.c -------------------------------------------------------------------------------- /LDViewThumbs/dlldatax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/dlldatax.h -------------------------------------------------------------------------------- /LDViewThumbs/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewThumbs/resource.h -------------------------------------------------------------------------------- /LDViewWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewWindow.cpp -------------------------------------------------------------------------------- /LDViewWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LDViewWindow.h -------------------------------------------------------------------------------- /LGEOTables/.gitignore: -------------------------------------------------------------------------------- 1 | LGEOTables 2 | -------------------------------------------------------------------------------- /LGEOTables/LGEOTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LGEOTables/LGEOTables.cpp -------------------------------------------------------------------------------- /LGEOTables/LGEOTables.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LGEOTables/LGEOTables.sln -------------------------------------------------------------------------------- /LGEOTables/LGEOTables.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LGEOTables/LGEOTables.vcxproj -------------------------------------------------------------------------------- /LGEOTables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LGEOTables/Makefile -------------------------------------------------------------------------------- /LatLonDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LatLonDialog.cpp -------------------------------------------------------------------------------- /LatLonDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LatLonDialog.h -------------------------------------------------------------------------------- /Launcher/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Launcher/Launcher.cpp -------------------------------------------------------------------------------- /Launcher/Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Launcher/Launcher.sln -------------------------------------------------------------------------------- /Launcher/Launcher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Launcher/Launcher.vcxproj -------------------------------------------------------------------------------- /LocationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LocationDialog.cpp -------------------------------------------------------------------------------- /LocationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LocationDialog.h -------------------------------------------------------------------------------- /LongOptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LongOptionUI.cpp -------------------------------------------------------------------------------- /LongOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/LongOptionUI.h -------------------------------------------------------------------------------- /MacOSX/LDLib/LDLib_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDLib/LDLib_Prefix.pch -------------------------------------------------------------------------------- /MacOSX/LDView/.gitignore: -------------------------------------------------------------------------------- 1 | distrib/ 2 | -------------------------------------------------------------------------------- /MacOSX/LDView/AlertHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/AlertHandler.cpp -------------------------------------------------------------------------------- /MacOSX/LDView/AlertHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/AlertHandler.h -------------------------------------------------------------------------------- /MacOSX/LDView/AutoDeleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/AutoDeleter.h -------------------------------------------------------------------------------- /MacOSX/LDView/AutoDeleter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/AutoDeleter.mm -------------------------------------------------------------------------------- /MacOSX/LDView/Base.lproj/MPD.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Base.lproj/MPD.xib -------------------------------------------------------------------------------- /MacOSX/LDView/BoolOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/BoolOptionUI.h -------------------------------------------------------------------------------- /MacOSX/LDView/BoolOptionUI.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/BoolOptionUI.mm -------------------------------------------------------------------------------- /MacOSX/LDView/BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/BoundingBox.h -------------------------------------------------------------------------------- /MacOSX/LDView/BoundingBox.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/BoundingBox.mm -------------------------------------------------------------------------------- /MacOSX/LDView/CameraLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/CameraLocation.h -------------------------------------------------------------------------------- /MacOSX/LDView/CameraLocation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/CameraLocation.mm -------------------------------------------------------------------------------- /MacOSX/LDView/EffectsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/EffectsPage.h -------------------------------------------------------------------------------- /MacOSX/LDView/EffectsPage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/EffectsPage.mm -------------------------------------------------------------------------------- /MacOSX/LDView/EnumOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/EnumOptionUI.h -------------------------------------------------------------------------------- /MacOSX/LDView/EnumOptionUI.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/EnumOptionUI.mm -------------------------------------------------------------------------------- /MacOSX/LDView/ErrorItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ErrorItem.h -------------------------------------------------------------------------------- /MacOSX/LDView/ErrorItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ErrorItem.mm -------------------------------------------------------------------------------- /MacOSX/LDView/FloatOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/FloatOptionUI.h -------------------------------------------------------------------------------- /MacOSX/LDView/FloatOptionUI.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/FloatOptionUI.mm -------------------------------------------------------------------------------- /MacOSX/LDView/GeneralPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GeneralPage.h -------------------------------------------------------------------------------- /MacOSX/LDView/GeneralPage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GeneralPage.mm -------------------------------------------------------------------------------- /MacOSX/LDView/GenericSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GenericSheet.h -------------------------------------------------------------------------------- /MacOSX/LDView/GenericSheet.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GenericSheet.mm -------------------------------------------------------------------------------- /MacOSX/LDView/GeometryPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GeometryPage.h -------------------------------------------------------------------------------- /MacOSX/LDView/GeometryPage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GeometryPage.mm -------------------------------------------------------------------------------- /MacOSX/LDView/GoToStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GoToStep.h -------------------------------------------------------------------------------- /MacOSX/LDView/GoToStep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GoToStep.m -------------------------------------------------------------------------------- /MacOSX/LDView/GroupOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GroupOptionUI.h -------------------------------------------------------------------------------- /MacOSX/LDView/GroupOptionUI.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/GroupOptionUI.mm -------------------------------------------------------------------------------- /MacOSX/LDView/HelperPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/HelperPanel.h -------------------------------------------------------------------------------- /MacOSX/LDView/HelperPanel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/HelperPanel.mm -------------------------------------------------------------------------------- /MacOSX/LDView/Images/examine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Images/examine.png -------------------------------------------------------------------------------- /MacOSX/LDView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Info.plist -------------------------------------------------------------------------------- /MacOSX/LDView/JpegOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/JpegOptions.h -------------------------------------------------------------------------------- /MacOSX/LDView/JpegOptions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/JpegOptions.mm -------------------------------------------------------------------------------- /MacOSX/LDView/LDViewCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LDViewCategories.h -------------------------------------------------------------------------------- /MacOSX/LDView/LDViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LDViewController.h -------------------------------------------------------------------------------- /MacOSX/LDView/LDView_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LDView_Prefix.pch -------------------------------------------------------------------------------- /MacOSX/LDView/LDrawModelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LDrawModelView.h -------------------------------------------------------------------------------- /MacOSX/LDView/LDrawModelView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LDrawModelView.mm -------------------------------------------------------------------------------- /MacOSX/LDView/LDrawPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LDrawPage.h -------------------------------------------------------------------------------- /MacOSX/LDView/LDrawPage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LDrawPage.mm -------------------------------------------------------------------------------- /MacOSX/LDView/LatLon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LatLon.h -------------------------------------------------------------------------------- /MacOSX/LDView/LatLon.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LatLon.mm -------------------------------------------------------------------------------- /MacOSX/LDView/LocationSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LocationSheet.h -------------------------------------------------------------------------------- /MacOSX/LDView/LocationSheet.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LocationSheet.mm -------------------------------------------------------------------------------- /MacOSX/LDView/LongOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LongOptionUI.h -------------------------------------------------------------------------------- /MacOSX/LDView/LongOptionUI.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/LongOptionUI.mm -------------------------------------------------------------------------------- /MacOSX/LDView/MPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/MPD.h -------------------------------------------------------------------------------- /MacOSX/LDView/MPD.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/MPD.mm -------------------------------------------------------------------------------- /MacOSX/LDView/MacSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/MacSetup.h -------------------------------------------------------------------------------- /MacOSX/LDView/ModelTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ModelTree.h -------------------------------------------------------------------------------- /MacOSX/LDView/ModelTree.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ModelTree.mm -------------------------------------------------------------------------------- /MacOSX/LDView/ModelTreeItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ModelTreeItem.h -------------------------------------------------------------------------------- /MacOSX/LDView/ModelTreeItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ModelTreeItem.mm -------------------------------------------------------------------------------- /MacOSX/LDView/ModelWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ModelWindow.h -------------------------------------------------------------------------------- /MacOSX/LDView/ModelWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ModelWindow.mm -------------------------------------------------------------------------------- /MacOSX/LDView/Mpd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Mpd.icns -------------------------------------------------------------------------------- /MacOSX/LDView/OptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/OptionUI.h -------------------------------------------------------------------------------- /MacOSX/LDView/OptionUI.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/OptionUI.mm -------------------------------------------------------------------------------- /MacOSX/LDView/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Options.h -------------------------------------------------------------------------------- /MacOSX/LDView/Options.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Options.mm -------------------------------------------------------------------------------- /MacOSX/LDView/OptionsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/OptionsPanel.h -------------------------------------------------------------------------------- /MacOSX/LDView/OptionsPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/OptionsPanel.m -------------------------------------------------------------------------------- /MacOSX/LDView/PartsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/PartsList.h -------------------------------------------------------------------------------- /MacOSX/LDView/PartsList.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/PartsList.mm -------------------------------------------------------------------------------- /MacOSX/LDView/PathOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/PathOptionUI.h -------------------------------------------------------------------------------- /MacOSX/LDView/PathOptionUI.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/PathOptionUI.mm -------------------------------------------------------------------------------- /MacOSX/LDView/PrefSetsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/PrefSetsPage.h -------------------------------------------------------------------------------- /MacOSX/LDView/PrefSetsPage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/PrefSetsPage.mm -------------------------------------------------------------------------------- /MacOSX/LDView/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Preferences.h -------------------------------------------------------------------------------- /MacOSX/LDView/Preferences.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Preferences.mm -------------------------------------------------------------------------------- /MacOSX/LDView/SnapshotTaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/SnapshotTaker.h -------------------------------------------------------------------------------- /MacOSX/LDView/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Statistics.h -------------------------------------------------------------------------------- /MacOSX/LDView/Statistics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Statistics.mm -------------------------------------------------------------------------------- /MacOSX/LDView/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Updater.h -------------------------------------------------------------------------------- /MacOSX/LDView/Updater.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/Updater.mm -------------------------------------------------------------------------------- /MacOSX/LDView/UpdatesPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/UpdatesPage.h -------------------------------------------------------------------------------- /MacOSX/LDView/UpdatesPage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/UpdatesPage.mm -------------------------------------------------------------------------------- /MacOSX/LDView/ViewOwnerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/ViewOwnerBase.h -------------------------------------------------------------------------------- /MacOSX/LDView/builddmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/builddmg.sh -------------------------------------------------------------------------------- /MacOSX/LDView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/LDView/main.m -------------------------------------------------------------------------------- /MacOSX/TRE/TRE_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/TRE/TRE_Prefix.pch -------------------------------------------------------------------------------- /MacOSX/build_parts_catalog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MacOSX/build_parts_catalog.sh -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Makefile.inc -------------------------------------------------------------------------------- /ModelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ModelLoader.cpp -------------------------------------------------------------------------------- /ModelLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ModelLoader.h -------------------------------------------------------------------------------- /ModelTreeDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ModelTreeDialog.cpp -------------------------------------------------------------------------------- /ModelTreeDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ModelTreeDialog.h -------------------------------------------------------------------------------- /ModelWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ModelWindow.cpp -------------------------------------------------------------------------------- /ModelWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ModelWindow.h -------------------------------------------------------------------------------- /MpdDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MpdDialog.cpp -------------------------------------------------------------------------------- /MpdDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/MpdDialog.h -------------------------------------------------------------------------------- /NumberOptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/NumberOptionUI.cpp -------------------------------------------------------------------------------- /NumberOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/NumberOptionUI.h -------------------------------------------------------------------------------- /OSMesa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OSMesa/.gitignore -------------------------------------------------------------------------------- /OSMesa/Headerize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OSMesa/Headerize.cpp -------------------------------------------------------------------------------- /OSMesa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OSMesa/Makefile -------------------------------------------------------------------------------- /OSMesa/ldview.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OSMesa/ldview.1 -------------------------------------------------------------------------------- /OSMesa/ldview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OSMesa/ldview.cpp -------------------------------------------------------------------------------- /OSMesa/ldviewrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OSMesa/ldviewrc.sample -------------------------------------------------------------------------------- /OptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OptionUI.cpp -------------------------------------------------------------------------------- /OptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OptionUI.h -------------------------------------------------------------------------------- /OptionsCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OptionsCanvas.cpp -------------------------------------------------------------------------------- /OptionsCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OptionsCanvas.h -------------------------------------------------------------------------------- /OptionsScroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OptionsScroller.cpp -------------------------------------------------------------------------------- /OptionsScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/OptionsScroller.h -------------------------------------------------------------------------------- /PartsListDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/PartsListDialog.cpp -------------------------------------------------------------------------------- /PartsListDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/PartsListDialog.h -------------------------------------------------------------------------------- /PathOptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/PathOptionUI.cpp -------------------------------------------------------------------------------- /PathOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/PathOptionUI.h -------------------------------------------------------------------------------- /QT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/.gitignore -------------------------------------------------------------------------------- /QT/.moc/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /QT/.ui/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /QT/APKBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/APKBUILD -------------------------------------------------------------------------------- /QT/About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/About.h -------------------------------------------------------------------------------- /QT/AboutPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/AboutPanel.ui -------------------------------------------------------------------------------- /QT/AlertHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/AlertHandler.cpp -------------------------------------------------------------------------------- /QT/AlertHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/AlertHandler.h -------------------------------------------------------------------------------- /QT/BoundingBoxPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/BoundingBoxPanel.ui -------------------------------------------------------------------------------- /QT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/CMakeLists.txt -------------------------------------------------------------------------------- /QT/CameraLocationPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/CameraLocationPanel.ui -------------------------------------------------------------------------------- /QT/CustomizeToolbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/CustomizeToolbar.ui -------------------------------------------------------------------------------- /QT/ErrorPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ErrorPanel.ui -------------------------------------------------------------------------------- /QT/ExportOptionPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ExportOptionPanel.ui -------------------------------------------------------------------------------- /QT/ExtraDirPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ExtraDirPanel.ui -------------------------------------------------------------------------------- /QT/Help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/Help.h -------------------------------------------------------------------------------- /QT/HelpPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/HelpPanel.ui -------------------------------------------------------------------------------- /QT/JpegOptionsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/JpegOptionsPanel.ui -------------------------------------------------------------------------------- /QT/LDView.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDView.1 -------------------------------------------------------------------------------- /QT/LDView.db: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /QT/LDView.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDView.mak -------------------------------------------------------------------------------- /QT/LDView.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDView.pro -------------------------------------------------------------------------------- /QT/LDView.rpmlintrc: -------------------------------------------------------------------------------- 1 | addFilter("spelling-error .* en_US (ldraw|www) ") 2 | -------------------------------------------------------------------------------- /QT/LDView.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDView.spec -------------------------------------------------------------------------------- /QT/LDView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDView.ui -------------------------------------------------------------------------------- /QT/LDViewBoundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewBoundingBox.cpp -------------------------------------------------------------------------------- /QT/LDViewBoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewBoundingBox.h -------------------------------------------------------------------------------- /QT/LDViewCameraLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewCameraLocation.cpp -------------------------------------------------------------------------------- /QT/LDViewCameraLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewCameraLocation.h -------------------------------------------------------------------------------- /QT/LDViewCustomizeToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewCustomizeToolbar.cpp -------------------------------------------------------------------------------- /QT/LDViewCustomizeToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewCustomizeToolbar.h -------------------------------------------------------------------------------- /QT/LDViewErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewErrors.cpp -------------------------------------------------------------------------------- /QT/LDViewErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewErrors.h -------------------------------------------------------------------------------- /QT/LDViewExportOption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewExportOption.cpp -------------------------------------------------------------------------------- /QT/LDViewExportOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewExportOption.h -------------------------------------------------------------------------------- /QT/LDViewJpegOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewJpegOptions.cpp -------------------------------------------------------------------------------- /QT/LDViewJpegOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewJpegOptions.h -------------------------------------------------------------------------------- /QT/LDViewLatitudeLongitude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewLatitudeLongitude.h -------------------------------------------------------------------------------- /QT/LDViewMainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewMainWindow.cpp -------------------------------------------------------------------------------- /QT/LDViewMainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewMainWindow.h -------------------------------------------------------------------------------- /QT/LDViewModelTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewModelTree.cpp -------------------------------------------------------------------------------- /QT/LDViewModelTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewModelTree.h -------------------------------------------------------------------------------- /QT/LDViewMpdModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewMpdModel.cpp -------------------------------------------------------------------------------- /QT/LDViewMpdModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewMpdModel.h -------------------------------------------------------------------------------- /QT/LDViewPartList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewPartList.cpp -------------------------------------------------------------------------------- /QT/LDViewPartList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewPartList.h -------------------------------------------------------------------------------- /QT/LDViewRotationCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewRotationCenter.cpp -------------------------------------------------------------------------------- /QT/LDViewRotationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewRotationCenter.h -------------------------------------------------------------------------------- /QT/LDViewSnapshotSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewSnapshotSettings.cpp -------------------------------------------------------------------------------- /QT/LDViewSnapshotSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewSnapshotSettings.h -------------------------------------------------------------------------------- /QT/LDViewStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewStatistics.cpp -------------------------------------------------------------------------------- /QT/LDViewStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LDViewStatistics.h -------------------------------------------------------------------------------- /QT/LatitudeLongitude.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/LatitudeLongitude.ui -------------------------------------------------------------------------------- /QT/ModelTreePanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ModelTreePanel.ui -------------------------------------------------------------------------------- /QT/ModelViewerWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ModelViewerWidget.cpp -------------------------------------------------------------------------------- /QT/ModelViewerWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ModelViewerWidget.h -------------------------------------------------------------------------------- /QT/MpdModelSelectionPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/MpdModelSelectionPanel.ui -------------------------------------------------------------------------------- /QT/OBS/.gitignore: -------------------------------------------------------------------------------- 1 | *.meta 2 | *.prjconf 3 | -------------------------------------------------------------------------------- /QT/OBS/LDView-qt5.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OBS/LDView-qt5.dsc -------------------------------------------------------------------------------- /QT/OBS/LDView-qt6.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OBS/LDView-qt6.dsc -------------------------------------------------------------------------------- /QT/OBS/LDView.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OBS/LDView.dsc -------------------------------------------------------------------------------- /QT/OBS/_service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OBS/_service -------------------------------------------------------------------------------- /QT/OBS/_service_obs_scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OBS/_service_obs_scm -------------------------------------------------------------------------------- /QT/OBS/appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OBS/appimage.yml -------------------------------------------------------------------------------- /QT/OBS/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OBS/backup.sh -------------------------------------------------------------------------------- /QT/OBS/flatpak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OBS/flatpak.yaml -------------------------------------------------------------------------------- /QT/OpenGLExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OpenGLExtensions.h -------------------------------------------------------------------------------- /QT/OpenGLExtensionsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/OpenGLExtensionsPanel.ui -------------------------------------------------------------------------------- /QT/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/PKGBUILD -------------------------------------------------------------------------------- /QT/PartList.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/PartList.ui -------------------------------------------------------------------------------- /QT/Preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/Preferences.cpp -------------------------------------------------------------------------------- /QT/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/Preferences.h -------------------------------------------------------------------------------- /QT/PreferencesPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/PreferencesPanel.ui -------------------------------------------------------------------------------- /QT/QTMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/QTMain.cpp -------------------------------------------------------------------------------- /QT/QtWebClientPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/QtWebClientPlugin.cpp -------------------------------------------------------------------------------- /QT/QtWebClientPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/QtWebClientPlugin.h -------------------------------------------------------------------------------- /QT/RotationCenterPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/RotationCenterPanel.ui -------------------------------------------------------------------------------- /QT/SnapshotAlertHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/SnapshotAlertHandler.cpp -------------------------------------------------------------------------------- /QT/SnapshotAlertHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/SnapshotAlertHandler.h -------------------------------------------------------------------------------- /QT/SnapshotSettingsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/SnapshotSettingsPanel.ui -------------------------------------------------------------------------------- /QT/SnapshotTaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/SnapshotTaker.cpp -------------------------------------------------------------------------------- /QT/SnapshotTaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/SnapshotTaker.h -------------------------------------------------------------------------------- /QT/StatisticsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/StatisticsPanel.ui -------------------------------------------------------------------------------- /QT/_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/_mac.sh -------------------------------------------------------------------------------- /QT/appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/appimage.sh -------------------------------------------------------------------------------- /QT/boost.symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/boost.symlink -------------------------------------------------------------------------------- /QT/boost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/boost.txt -------------------------------------------------------------------------------- /QT/builddmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/builddmg.sh -------------------------------------------------------------------------------- /QT/cleanthumbnailcache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/cleanthumbnailcache.sh -------------------------------------------------------------------------------- /QT/debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/debian/.gitignore -------------------------------------------------------------------------------- /QT/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/debian/changelog -------------------------------------------------------------------------------- /QT/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /QT/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/debian/control -------------------------------------------------------------------------------- /QT/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/debian/copyright -------------------------------------------------------------------------------- /QT/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/debian/postinst -------------------------------------------------------------------------------- /QT/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/debian/postrm -------------------------------------------------------------------------------- /QT/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/debian/rules -------------------------------------------------------------------------------- /QT/desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/desktop.sh -------------------------------------------------------------------------------- /QT/desktop/ldraw-thumbnailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/desktop/ldraw-thumbnailer -------------------------------------------------------------------------------- /QT/desktop/ldraw.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/desktop/ldraw.keys -------------------------------------------------------------------------------- /QT/desktop/ldraw.mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/desktop/ldraw.mime -------------------------------------------------------------------------------- /QT/desktop/ldraw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/desktop/ldraw.xml -------------------------------------------------------------------------------- /QT/desktop/ldview.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/desktop/ldview.desktop -------------------------------------------------------------------------------- /QT/desktop/ldview.thumbnailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/desktop/ldview.thumbnailer -------------------------------------------------------------------------------- /QT/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/.gitignore -------------------------------------------------------------------------------- /QT/docker/Dockerfile-appimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/Dockerfile-appimage -------------------------------------------------------------------------------- /QT/docker/Dockerfile-arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/Dockerfile-arch -------------------------------------------------------------------------------- /QT/docker/Dockerfile-centos_8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/Dockerfile-centos_8 -------------------------------------------------------------------------------- /QT/docker/Dockerfile-mageia_7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/Dockerfile-mageia_7 -------------------------------------------------------------------------------- /QT/docker/Dockerfile-mageia_8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/Dockerfile-mageia_8 -------------------------------------------------------------------------------- /QT/docker/Dockerfile-rhel-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/Dockerfile-rhel-9 -------------------------------------------------------------------------------- /QT/docker/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/compile.sh -------------------------------------------------------------------------------- /QT/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/docker-compose.yml -------------------------------------------------------------------------------- /QT/docker/docker-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/docker-desktop.sh -------------------------------------------------------------------------------- /QT/docker/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/docker.sh -------------------------------------------------------------------------------- /QT/docker/os-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/os-report.sh -------------------------------------------------------------------------------- /QT/docker/query-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/docker/query-package.sh -------------------------------------------------------------------------------- /QT/errorimages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/errorimages.sh -------------------------------------------------------------------------------- /QT/freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/freebsd.sh -------------------------------------------------------------------------------- /QT/freebsd/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | ldview-*.txz 3 | distinfo 4 | -------------------------------------------------------------------------------- /QT/freebsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/freebsd/Makefile -------------------------------------------------------------------------------- /QT/freebsd/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/freebsd/pkg-descr -------------------------------------------------------------------------------- /QT/freebsd/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/freebsd/pkg-plist -------------------------------------------------------------------------------- /QT/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/gpl.txt -------------------------------------------------------------------------------- /QT/images/LDView.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/images/LDView.icns -------------------------------------------------------------------------------- /QT/images/LDViewIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/images/LDViewIcon.png -------------------------------------------------------------------------------- /QT/images/LDViewIcon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/images/LDViewIcon128.png -------------------------------------------------------------------------------- /QT/images/LDViewIcon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/images/LDViewIcon16.png -------------------------------------------------------------------------------- /QT/images/LDViewIcon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/images/LDViewIcon48.png -------------------------------------------------------------------------------- /QT/images/LDViewIcon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/images/LDViewIcon64.png -------------------------------------------------------------------------------- /QT/images/StudLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/images/StudLogo.png -------------------------------------------------------------------------------- /QT/inidiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/inidiff.sh -------------------------------------------------------------------------------- /QT/kde/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/kde/.gitignore -------------------------------------------------------------------------------- /QT/kde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/kde/CMakeLists.txt -------------------------------------------------------------------------------- /QT/kde/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/kde/build.sh -------------------------------------------------------------------------------- /QT/kde/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/kde/test.sh -------------------------------------------------------------------------------- /QT/kde5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/kde5/.gitignore -------------------------------------------------------------------------------- /QT/kde5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/kde5/CMakeLists.txt -------------------------------------------------------------------------------- /QT/kde5/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/kde5/build.sh -------------------------------------------------------------------------------- /QT/ldraw-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ldraw-update.sh -------------------------------------------------------------------------------- /QT/ldraw.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ldraw.spec -------------------------------------------------------------------------------- /QT/ldview.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ldview.desktop -------------------------------------------------------------------------------- /QT/ldview_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ldview_cs.ts -------------------------------------------------------------------------------- /QT/ldview_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ldview_de.ts -------------------------------------------------------------------------------- /QT/ldview_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ldview_en.ts -------------------------------------------------------------------------------- /QT/ldview_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ldview_hu.ts -------------------------------------------------------------------------------- /QT/ldview_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ldview_it.ts -------------------------------------------------------------------------------- /QT/macdebug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/macdebug.sh -------------------------------------------------------------------------------- /QT/macrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/macrun.sh -------------------------------------------------------------------------------- /QT/makeall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/makeall -------------------------------------------------------------------------------- /QT/makeclean: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | make -f LDView.mak clean 4 | -------------------------------------------------------------------------------- /QT/makedeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/makedeb -------------------------------------------------------------------------------- /QT/makedebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/makedebug -------------------------------------------------------------------------------- /QT/makedepend: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | make -f LDView.mak depend 4 | -------------------------------------------------------------------------------- /QT/makerpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/makerpm -------------------------------------------------------------------------------- /QT/maketgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/maketgz -------------------------------------------------------------------------------- /QT/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/misc.cpp -------------------------------------------------------------------------------- /QT/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/misc.h -------------------------------------------------------------------------------- /QT/ppconly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/ppconly.sh -------------------------------------------------------------------------------- /QT/rctrans.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/rctrans.pl -------------------------------------------------------------------------------- /QT/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/resources.qrc -------------------------------------------------------------------------------- /QT/thumbnailtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/thumbnailtest.sh -------------------------------------------------------------------------------- /QT/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/todo.txt -------------------------------------------------------------------------------- /QT/toolbarimages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/toolbarimages.sh -------------------------------------------------------------------------------- /QT/trans.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/trans.pl -------------------------------------------------------------------------------- /QT/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/uninstall.sh -------------------------------------------------------------------------------- /QT/xfce.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp xfce/ldraw.desktop /usr/share/thumbnailers/ 3 | -------------------------------------------------------------------------------- /QT/xfce/ldraw.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/QT/xfce/ldraw.desktop -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Readme.txt -------------------------------------------------------------------------------- /Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Resource.h -------------------------------------------------------------------------------- /RotationCenterDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/RotationCenterDialog.cpp -------------------------------------------------------------------------------- /RotationCenterDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/RotationCenterDialog.h -------------------------------------------------------------------------------- /SSConfigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/SSConfigure.cpp -------------------------------------------------------------------------------- /SSConfigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/SSConfigure.h -------------------------------------------------------------------------------- /SSModelWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/SSModelWindow.cpp -------------------------------------------------------------------------------- /SSModelWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/SSModelWindow.h -------------------------------------------------------------------------------- /SSPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/SSPreview.cpp -------------------------------------------------------------------------------- /SSPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/SSPreview.h -------------------------------------------------------------------------------- /StatisticsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/StatisticsDialog.cpp -------------------------------------------------------------------------------- /StatisticsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/StatisticsDialog.h -------------------------------------------------------------------------------- /StepDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/StepDialog.cpp -------------------------------------------------------------------------------- /StepDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/StepDialog.h -------------------------------------------------------------------------------- /StringOptionUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/StringOptionUI.cpp -------------------------------------------------------------------------------- /StringOptionUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/StringOptionUI.h -------------------------------------------------------------------------------- /TCFoundation/.gitignore: -------------------------------------------------------------------------------- 1 | lib*.a 2 | -------------------------------------------------------------------------------- /TCFoundation/ConvertUTF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/ConvertUTF.c -------------------------------------------------------------------------------- /TCFoundation/ConvertUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/ConvertUTF.h -------------------------------------------------------------------------------- /TCFoundation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/Makefile -------------------------------------------------------------------------------- /TCFoundation/STB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/STB.cpp -------------------------------------------------------------------------------- /TCFoundation/TCAlert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCAlert.cpp -------------------------------------------------------------------------------- /TCFoundation/TCAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCAlert.h -------------------------------------------------------------------------------- /TCFoundation/TCAlertManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCAlertManager.h -------------------------------------------------------------------------------- /TCFoundation/TCAlertSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCAlertSender.h -------------------------------------------------------------------------------- /TCFoundation/TCArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCArray.cpp -------------------------------------------------------------------------------- /TCFoundation/TCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCArray.h -------------------------------------------------------------------------------- /TCFoundation/TCDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCDefines.h -------------------------------------------------------------------------------- /TCFoundation/TCDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCDictionary.cpp -------------------------------------------------------------------------------- /TCFoundation/TCDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCDictionary.h -------------------------------------------------------------------------------- /TCFoundation/TCImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCImage.cpp -------------------------------------------------------------------------------- /TCFoundation/TCImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCImage.h -------------------------------------------------------------------------------- /TCFoundation/TCImageFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCImageFormat.h -------------------------------------------------------------------------------- /TCFoundation/TCImageOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCImageOptions.h -------------------------------------------------------------------------------- /TCFoundation/TCJpegOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCJpegOptions.h -------------------------------------------------------------------------------- /TCFoundation/TCLocalStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCLocalStrings.h -------------------------------------------------------------------------------- /TCFoundation/TCMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCMacros.h -------------------------------------------------------------------------------- /TCFoundation/TCNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCNetwork.cpp -------------------------------------------------------------------------------- /TCFoundation/TCNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCNetwork.h -------------------------------------------------------------------------------- /TCFoundation/TCObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCObject.cpp -------------------------------------------------------------------------------- /TCFoundation/TCObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCObject.h -------------------------------------------------------------------------------- /TCFoundation/TCObjectArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCObjectArray.h -------------------------------------------------------------------------------- /TCFoundation/TCStlIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCStlIncludes.h -------------------------------------------------------------------------------- /TCFoundation/TCStringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCStringArray.h -------------------------------------------------------------------------------- /TCFoundation/TCUnzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCUnzip.cpp -------------------------------------------------------------------------------- /TCFoundation/TCUnzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCUnzip.h -------------------------------------------------------------------------------- /TCFoundation/TCUnzipStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCUnzipStream.h -------------------------------------------------------------------------------- /TCFoundation/TCUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCUserDefaults.h -------------------------------------------------------------------------------- /TCFoundation/TCVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCVector.cpp -------------------------------------------------------------------------------- /TCFoundation/TCVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCVector.h -------------------------------------------------------------------------------- /TCFoundation/TCWebClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCWebClient.cpp -------------------------------------------------------------------------------- /TCFoundation/TCWebClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/TCWebClient.h -------------------------------------------------------------------------------- /TCFoundation/mystring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/mystring.cpp -------------------------------------------------------------------------------- /TCFoundation/mystring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TCFoundation/mystring.h -------------------------------------------------------------------------------- /TRE/.gitignore: -------------------------------------------------------------------------------- 1 | lib*.a 2 | -------------------------------------------------------------------------------- /TRE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/Makefile -------------------------------------------------------------------------------- /TRE/TRE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRE.vcxproj -------------------------------------------------------------------------------- /TRE/TRE.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRE.vcxproj.filters -------------------------------------------------------------------------------- /TRE/TREColoredShapeGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREColoredShapeGroup.cpp -------------------------------------------------------------------------------- /TRE/TREColoredShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREColoredShapeGroup.h -------------------------------------------------------------------------------- /TRE/TREGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREGL.h -------------------------------------------------------------------------------- /TRE/TREGLExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREGLExtensions.cpp -------------------------------------------------------------------------------- /TRE/TREGLExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREGLExtensions.h -------------------------------------------------------------------------------- /TRE/TREMainModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREMainModel.cpp -------------------------------------------------------------------------------- /TRE/TREMainModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREMainModel.h -------------------------------------------------------------------------------- /TRE/TREModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREModel.cpp -------------------------------------------------------------------------------- /TRE/TREModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREModel.h -------------------------------------------------------------------------------- /TRE/TREShapeGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREShapeGroup.cpp -------------------------------------------------------------------------------- /TRE/TREShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREShapeGroup.h -------------------------------------------------------------------------------- /TRE/TRESmoother.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRESmoother.cpp -------------------------------------------------------------------------------- /TRE/TRESmoother.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRESmoother.h -------------------------------------------------------------------------------- /TRE/TRESubModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRESubModel.cpp -------------------------------------------------------------------------------- /TRE/TRESubModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRESubModel.h -------------------------------------------------------------------------------- /TRE/TRETexmappedShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRETexmappedShapeGroup.h -------------------------------------------------------------------------------- /TRE/TRETransShapeGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRETransShapeGroup.cpp -------------------------------------------------------------------------------- /TRE/TRETransShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TRETransShapeGroup.h -------------------------------------------------------------------------------- /TRE/TREVertexArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREVertexArray.cpp -------------------------------------------------------------------------------- /TRE/TREVertexArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREVertexArray.h -------------------------------------------------------------------------------- /TRE/TREVertexKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREVertexKey.h -------------------------------------------------------------------------------- /TRE/TREVertexStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREVertexStore.cpp -------------------------------------------------------------------------------- /TRE/TREVertexStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TRE/TREVertexStore.h -------------------------------------------------------------------------------- /TbButtonInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TbButtonInfo.cpp -------------------------------------------------------------------------------- /TbButtonInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TbButtonInfo.h -------------------------------------------------------------------------------- /TestModels/BFC/BH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/BH.dat -------------------------------------------------------------------------------- /TestModels/BFC/BMG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/BMG.dat -------------------------------------------------------------------------------- /TestModels/BFC/Cyls.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/Cyls.dat -------------------------------------------------------------------------------- /TestModels/BFC/Cyls2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/Cyls2.dat -------------------------------------------------------------------------------- /TestModels/BFC/Disc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/Disc.dat -------------------------------------------------------------------------------- /TestModels/BFC/HollowBox.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/HollowBox.dat -------------------------------------------------------------------------------- /TestModels/BFC/Invert1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/Invert1.dat -------------------------------------------------------------------------------- /TestModels/BFC/Invert2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/Invert2.dat -------------------------------------------------------------------------------- /TestModels/BFC/Ndis.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/Ndis.dat -------------------------------------------------------------------------------- /TestModels/BFC/NoClip.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/NoClip.dat -------------------------------------------------------------------------------- /TestModels/BFC/SlopedCone.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/SlopedCone.dat -------------------------------------------------------------------------------- /TestModels/BFC/UncertPart.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/BFC/UncertPart.dat -------------------------------------------------------------------------------- /TestModels/Broken/4939-07.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Broken/4939-07.mpd -------------------------------------------------------------------------------- /TestModels/Broken/Normals.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Broken/Normals.dat -------------------------------------------------------------------------------- /TestModels/C24Subs.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/C24Subs.ldr -------------------------------------------------------------------------------- /TestModels/ColorBits.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/ColorBits.ldr -------------------------------------------------------------------------------- /TestModels/MPD/Data.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/MPD/Data.ldr -------------------------------------------------------------------------------- /TestModels/MPD/DataNoPad.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/MPD/DataNoPad.ldr -------------------------------------------------------------------------------- /TestModels/MPD/MultiLevel.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/MPD/MultiLevel.mpd -------------------------------------------------------------------------------- /TestModels/Mirror.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Mirror.ldr -------------------------------------------------------------------------------- /TestModels/ModelLoop.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/ModelLoop.ldr -------------------------------------------------------------------------------- /TestModels/NonUniform/ell.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/NonUniform/ell.ldr -------------------------------------------------------------------------------- /TestModels/PovMovedTo/Arm.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/PovMovedTo/Arm.ldr -------------------------------------------------------------------------------- /TestModels/Primitives/Rin.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Primitives/Rin.dat -------------------------------------------------------------------------------- /TestModels/SmallTri.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/SmallTri.ldr -------------------------------------------------------------------------------- /TestModels/Support/C24_1.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Support/C24_1.ldr -------------------------------------------------------------------------------- /TestModels/Unicode/mpd.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Unicode/mpd.ldr -------------------------------------------------------------------------------- /TestModels/Unicode/ref.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Unicode/ref.ldr -------------------------------------------------------------------------------- /TestModels/Unicode/rëf2.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Unicode/rëf2.ldr -------------------------------------------------------------------------------- /TestModels/Unicode/×bb.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/Unicode/×bb.ldr -------------------------------------------------------------------------------- /TestModels/chrdtest.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/chrdtest.dat -------------------------------------------------------------------------------- /TestModels/colors.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/colors.ldr -------------------------------------------------------------------------------- /TestModels/cylitest.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/cylitest.dat -------------------------------------------------------------------------------- /TestModels/material.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/material.ldr -------------------------------------------------------------------------------- /TestModels/ndistest.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/TestModels/ndistest.dat -------------------------------------------------------------------------------- /Textures/SansSerif.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Textures/SansSerif.fnt -------------------------------------------------------------------------------- /Textures/StudLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Textures/StudLogo.png -------------------------------------------------------------------------------- /Textures/StudLogo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Textures/StudLogo.psd -------------------------------------------------------------------------------- /ToolbarStrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ToolbarStrip.cpp -------------------------------------------------------------------------------- /ToolbarStrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/ToolbarStrip.h -------------------------------------------------------------------------------- /Translations/Czech/Czech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Translations/Czech/Czech.cpp -------------------------------------------------------------------------------- /Translations/Czech/Czech.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Translations/Czech/Czech.sln -------------------------------------------------------------------------------- /Translations/Czech/LDView.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Translations/Czech/LDView.rc -------------------------------------------------------------------------------- /Translations/Czech/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Translations/Czech/ReadMe.txt -------------------------------------------------------------------------------- /Translations/German/LDView.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/Translations/German/LDView.rc -------------------------------------------------------------------------------- /UnMirrorStuds/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug 2 | unmirrorstuds 3 | -------------------------------------------------------------------------------- /UnMirrorStuds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/UnMirrorStuds/Makefile -------------------------------------------------------------------------------- /UnMirrorStuds/UnMirrorStuds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/UnMirrorStuds/UnMirrorStuds.h -------------------------------------------------------------------------------- /UnMirrorStuds/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/UnMirrorStuds/resource.h -------------------------------------------------------------------------------- /WinWebClientPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/WinWebClientPlugin.cpp -------------------------------------------------------------------------------- /WinWebClientPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/WinWebClientPlugin.h -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/appveyor.yml -------------------------------------------------------------------------------- /boost.1350.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/boost.1350.sh -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/crowdin.yml -------------------------------------------------------------------------------- /dpiv2.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/dpiv2.manifest -------------------------------------------------------------------------------- /include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/include/GL/glext.h -------------------------------------------------------------------------------- /include/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/include/GL/wglext.h -------------------------------------------------------------------------------- /include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/include/zconf.h -------------------------------------------------------------------------------- /include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/include/zlib.h -------------------------------------------------------------------------------- /install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/install.txt -------------------------------------------------------------------------------- /lib/MacOSX/lib3ds.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/MacOSX/lib3ds.a -------------------------------------------------------------------------------- /lib/MacOSX/lib3dsu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/MacOSX/lib3dsu.a -------------------------------------------------------------------------------- /lib/MacOSX/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/MacOSX/libjpeg.a -------------------------------------------------------------------------------- /lib/MacOSX/libjpegu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/MacOSX/libjpegu.a -------------------------------------------------------------------------------- /lib/MacOSX/libpng16.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/MacOSX/libpng16.a -------------------------------------------------------------------------------- /lib/MacOSX/libpng16u.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/MacOSX/libpng16u.a -------------------------------------------------------------------------------- /lib/lib3ds-64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/lib3ds-64.a -------------------------------------------------------------------------------- /lib/lib3ds-vs2017.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/lib3ds-vs2017.lib -------------------------------------------------------------------------------- /lib/lib3ds.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/lib3ds.a -------------------------------------------------------------------------------- /lib/libjpeg-vs2017.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/libjpeg-vs2017.lib -------------------------------------------------------------------------------- /lib/libpng16-vs2017.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/libpng16-vs2017.lib -------------------------------------------------------------------------------- /lib/x64/lib3ds-vs2019.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/x64/lib3ds-vs2019.lib -------------------------------------------------------------------------------- /lib/x64/libjpeg-vs2019.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/x64/libjpeg-vs2019.lib -------------------------------------------------------------------------------- /lib/x64/libpng16-vs2019.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/x64/libpng16-vs2019.lib -------------------------------------------------------------------------------- /lib/x64/zlib-vs2019.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/x64/zlib-vs2019.lib -------------------------------------------------------------------------------- /lib/zlib-vs2017.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/lib/zlib-vs2017.lib -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/license.txt -------------------------------------------------------------------------------- /license2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/license2.txt -------------------------------------------------------------------------------- /m6459.ldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcobbs/ldview/HEAD/m6459.ldr --------------------------------------------------------------------------------