├── .editorconfig ├── .gitignore ├── .hgignore ├── Development ├── Projects │ ├── Mac │ │ ├── Quesa (Legacy).xcodeproj │ │ │ └── project.pbxproj │ │ ├── Quesa Custom Elements.mcp │ │ ├── Quesa Custom Elements.mcp.exp │ │ ├── Quesa Gestalt.mcp │ │ ├── Quesa Viewer.mcp │ │ ├── Quesa Viewer.mcp.exp │ │ ├── Quesa.mcp.xml │ │ ├── Quesa.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Framework.xcscheme │ │ │ │ ├── FrameworkNoGL.xcscheme │ │ │ │ ├── Static Library.xcscheme │ │ │ │ └── Static NoGL.xcscheme │ │ ├── QuesaCarbonDebug.pch │ │ ├── QuesaCarbonProfile.pch │ │ ├── QuesaCarbonRelease.pch │ │ ├── QuesaClassicDebug.pch │ │ ├── QuesaClassicProfile.pch │ │ ├── QuesaClassicRelease.pch │ │ ├── QuesaStaticDebug.pch │ │ ├── QuesaStaticProfile.pch │ │ ├── QuesaStaticRelease.pch │ │ ├── quesa-export-gcc3.txt │ │ └── xcode-configs │ │ │ ├── Framework-NoOpenGL.xcconfig │ │ │ ├── Legacy-Debug.xcconfig │ │ │ ├── Legacy-Release.xcconfig │ │ │ ├── Legacy.xcconfig │ │ │ ├── Modern-Debug.xcconfig │ │ │ ├── Modern-Release.xcconfig │ │ │ ├── Modern.xcconfig │ │ │ ├── Quesa-common.xcconfig │ │ │ ├── Quesa-debug.xcconfig │ │ │ ├── Quesa-framework.xcconfig │ │ │ ├── Quesa-release.xcconfig │ │ │ ├── Quesa-staticlibrary.xcconfig │ │ │ └── Static-NoGL.xcconfig │ ├── Unix │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── INSTALL.examples │ │ ├── INSTALL.fullDist │ │ ├── Makefile.am │ │ ├── Makefile.am.examples │ │ ├── NEWS │ │ ├── README │ │ ├── Scripts │ │ │ ├── buildDistribution.sh │ │ │ ├── buildUnix.sh │ │ │ ├── destroyUnixTree.sh │ │ │ └── prepareUnixTree.sh │ │ ├── acinclude.m4 │ │ ├── configure.in │ │ ├── configure.in.examples │ │ └── ltmain.sh │ └── Windows │ │ ├── NoOpenGL.props │ │ ├── Quesa-NoOpenGL.vcxproj │ │ ├── Quesa-NoOpenGL.vcxproj.filters │ │ ├── Quesa.sln │ │ ├── Quesa.vcxproj │ │ ├── Quesa.vcxproj.filters │ │ ├── QuesaHeaders.h │ │ ├── QuesaHeadersDebug.h │ │ └── visual studio common.props ├── Scripts │ ├── BuildRelease │ │ ├── BuildRelease.pl │ │ └── WinBuild.bat │ ├── HeaderDoc │ │ ├── DoQuesaDocs.pl │ │ ├── Documentation │ │ │ ├── APIAnchors.html │ │ │ ├── CHeaderTags.html │ │ │ ├── CPPTags.html │ │ │ ├── HeaderDoc.html │ │ │ ├── HeaderDocClassHierarchy.html │ │ │ └── headerDoc2HTML.config.html │ │ ├── MakeDocsScript.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ ├── MasterTOC-footer-template.html │ │ ├── MasterTOC-header-template.html │ │ ├── Modules │ │ │ └── HeaderDoc │ │ │ │ ├── APIOwner.pm │ │ │ │ ├── CClass.pm │ │ │ │ ├── CPPClass.pm │ │ │ │ ├── Constant.pm │ │ │ │ ├── DBLookup.pm │ │ │ │ ├── DocReference.pm │ │ │ │ ├── Enum.pm │ │ │ │ ├── Function.pm │ │ │ │ ├── Header.pm │ │ │ │ ├── HeaderElement.pm │ │ │ │ ├── Method.pm │ │ │ │ ├── MinorAPIElement.pm │ │ │ │ ├── ObjCCategory.pm │ │ │ │ ├── ObjCClass.pm │ │ │ │ ├── ObjCContainer.pm │ │ │ │ ├── ObjCProtocol.pm │ │ │ │ ├── PDefine.pm │ │ │ │ ├── Struct.pm │ │ │ │ ├── Typedef.pm │ │ │ │ ├── Utilities.pm │ │ │ │ └── Var.pm │ │ ├── PrepareForHeaderDoc.pl │ │ ├── gatherHeaderDoc.pl │ │ ├── headerDoc2HTML.config │ │ └── headerDoc2HTML.pl │ ├── Headeriser │ │ └── Headeriser.pl │ ├── Scripts.html │ ├── Skeleton │ │ └── Skeleton.pl │ └── Status │ │ ├── Status.pl │ │ └── status.txt └── Source │ ├── Core │ ├── Geometry │ │ ├── E3Geometry.cpp │ │ ├── E3Geometry.h │ │ ├── E3GeometryBox.cpp │ │ ├── E3GeometryBox.h │ │ ├── E3GeometryCone.cpp │ │ ├── E3GeometryCone.h │ │ ├── E3GeometryCylinder.cpp │ │ ├── E3GeometryCylinder.h │ │ ├── E3GeometryDisk.cpp │ │ ├── E3GeometryDisk.h │ │ ├── E3GeometryEllipse.cpp │ │ ├── E3GeometryEllipse.h │ │ ├── E3GeometryEllipsoid.cpp │ │ ├── E3GeometryEllipsoid.h │ │ ├── E3GeometryGeneralPolygon.cpp │ │ ├── E3GeometryGeneralPolygon.h │ │ ├── E3GeometryLine.cpp │ │ ├── E3GeometryLine.h │ │ ├── E3GeometryMarker.cpp │ │ ├── E3GeometryMarker.h │ │ ├── E3GeometryMesh.cpp │ │ ├── E3GeometryMesh.h │ │ ├── E3GeometryNURBCurve.cpp │ │ ├── E3GeometryNURBCurve.h │ │ ├── E3GeometryNURBPatch.cpp │ │ ├── E3GeometryNURBPatch.h │ │ ├── E3GeometryPixmapMarker.cpp │ │ ├── E3GeometryPixmapMarker.h │ │ ├── E3GeometryPoint.cpp │ │ ├── E3GeometryPoint.h │ │ ├── E3GeometryPolyLine.cpp │ │ ├── E3GeometryPolyLine.h │ │ ├── E3GeometryPolygon.cpp │ │ ├── E3GeometryPolygon.h │ │ ├── E3GeometryPolyhedron.cpp │ │ ├── E3GeometryPolyhedron.h │ │ ├── E3GeometryTorus.cpp │ │ ├── E3GeometryTorus.h │ │ ├── E3GeometryTriGrid.cpp │ │ ├── E3GeometryTriGrid.h │ │ ├── E3GeometryTriMesh.cpp │ │ ├── E3GeometryTriMesh.h │ │ ├── E3GeometryTriMeshOptimize.cpp │ │ ├── E3GeometryTriMeshOptimize.h │ │ ├── E3GeometryTriangle.cpp │ │ └── E3GeometryTriangle.h │ ├── Glue │ │ ├── QD3DCamera.cpp │ │ ├── QD3DCustomElements.cpp │ │ ├── QD3DDrawContext.cpp │ │ ├── QD3DErrors.cpp │ │ ├── QD3DExtension.cpp │ │ ├── QD3DGeometry.cpp │ │ ├── QD3DGroup.cpp │ │ ├── QD3DIO.cpp │ │ ├── QD3DLight.cpp │ │ ├── QD3DMain.cpp │ │ ├── QD3DMath.cpp │ │ ├── QD3DMemory.cpp │ │ ├── QD3DPick.cpp │ │ ├── QD3DRenderer.cpp │ │ ├── QD3DSet.cpp │ │ ├── QD3DShader.cpp │ │ ├── QD3DStorage.cpp │ │ ├── QD3DString.cpp │ │ ├── QD3DStyle.cpp │ │ ├── QD3DTransform.cpp │ │ └── QD3DView.cpp │ ├── Support │ │ ├── E3ArrayOrList.cpp │ │ ├── E3ArrayOrList.h │ │ ├── E3ClassTree.cpp │ │ ├── E3ClassTree.h │ │ ├── E3Compatibility.cpp │ │ ├── E3Compatibility.h │ │ ├── E3Debug.h │ │ ├── E3ErrorManager.cpp │ │ ├── E3ErrorManager.h │ │ ├── E3FastArray.h │ │ ├── E3Globals.cpp │ │ ├── E3Globals.h │ │ ├── E3HashTable.cpp │ │ ├── E3HashTable.h │ │ ├── E3Pool.cpp │ │ ├── E3Pool.h │ │ ├── E3Prefix.h │ │ ├── E3SafeCompare.hpp │ │ ├── E3StackCrawl.h │ │ ├── E3System.cpp │ │ ├── E3System.h │ │ ├── E3Tessellate.cpp │ │ ├── E3Tessellate.h │ │ ├── E3Utils.cpp │ │ ├── E3Utils.h │ │ └── E3Version.h │ ├── System │ │ ├── E3Camera.cpp │ │ ├── E3Camera.h │ │ ├── E3CustomElements.cpp │ │ ├── E3CustomElements.h │ │ ├── E3DrawContext.cpp │ │ ├── E3DrawContext.h │ │ ├── E3Errors.cpp │ │ ├── E3Errors.h │ │ ├── E3Extension.cpp │ │ ├── E3Extension.h │ │ ├── E3Group.cpp │ │ ├── E3Group.h │ │ ├── E3IO.cpp │ │ ├── E3IO.h │ │ ├── E3IOData.cpp │ │ ├── E3IOData.h │ │ ├── E3Light.cpp │ │ ├── E3Light.h │ │ ├── E3Main.cpp │ │ ├── E3Main.h │ │ ├── E3Math.cpp │ │ ├── E3Math.h │ │ ├── E3Math_Intersect.cpp │ │ ├── E3Math_Intersect.h │ │ ├── E3Memory.cpp │ │ ├── E3Memory.h │ │ ├── E3Pick.cpp │ │ ├── E3Pick.h │ │ ├── E3Renderer.cpp │ │ ├── E3Renderer.h │ │ ├── E3Set.cpp │ │ ├── E3Set.h │ │ ├── E3Shader.cpp │ │ ├── E3Shader.h │ │ ├── E3Storage.cpp │ │ ├── E3Storage.h │ │ ├── E3String.cpp │ │ ├── E3String.h │ │ ├── E3Style.cpp │ │ ├── E3Style.h │ │ ├── E3Texture.cpp │ │ ├── E3Texture.h │ │ ├── E3Transform.cpp │ │ ├── E3Transform.h │ │ ├── E3View.cpp │ │ └── E3View.h │ └── glu tessellation from Mesa │ │ ├── README │ │ ├── alg-outline │ │ ├── dict-list.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── geom.c │ │ ├── geom.h │ │ ├── glu-mesa.h │ │ ├── gluos.h │ │ ├── memalloc.c │ │ ├── memalloc.h │ │ ├── mesh.c │ │ ├── mesh.h │ │ ├── normal.c │ │ ├── normal.h │ │ ├── priorityq-heap.c │ │ ├── priorityq-heap.h │ │ ├── priorityq-sort.h │ │ ├── priorityq.c │ │ ├── priorityq.h │ │ ├── render.c │ │ ├── render.h │ │ ├── sweep.c │ │ ├── sweep.h │ │ ├── tess.c │ │ ├── tess.h │ │ ├── tessmono.c │ │ └── tessmono.h │ ├── FileFormats │ ├── E3IOFileFormat.cpp │ ├── E3IOFileFormat.h │ ├── Readers │ │ └── 3DMF │ │ │ ├── E3FFR_3DMF.cpp │ │ │ ├── E3FFR_3DMF.h │ │ │ ├── E3FFR_3DMF_Bin.cpp │ │ │ ├── E3FFR_3DMF_Bin.h │ │ │ ├── E3FFR_3DMF_Geometry.cpp │ │ │ ├── E3FFR_3DMF_Geometry.h │ │ │ ├── E3FFR_3DMF_Text.cpp │ │ │ └── E3FFR_3DMF_Text.h │ └── Writers │ │ └── 3DMF │ │ ├── E3FFW_3DMFBin_Geometry.cpp │ │ ├── E3FFW_3DMFBin_Geometry.h │ │ ├── E3FFW_3DMFBin_Register.cpp │ │ ├── E3FFW_3DMFBin_Register.h │ │ ├── E3FFW_3DMFBin_Writer.cpp │ │ └── E3FFW_3DMFBin_Writer.h │ ├── Platform │ ├── Cocoa │ │ ├── E3CocoaDebug.cpp │ │ ├── E3CocoaDrawContext.mm │ │ ├── E3CocoaDrawContextNotify.h │ │ ├── E3CocoaDrawContextNotify.mm │ │ ├── E3CocoaPrefix.h │ │ ├── E3CocoaStackCrawl.cpp │ │ ├── E3CocoaSystem.cpp │ │ ├── E3MacLog.h │ │ └── E3MacLog.mm │ ├── Mac │ │ ├── E3MacDebug.cpp │ │ ├── E3MacMemory.cpp │ │ ├── E3MacMemory.h │ │ ├── E3MacSystem.cpp │ │ ├── Quesa Prefix Carbon Debug.h │ │ ├── Quesa Prefix Carbon Profile.h │ │ ├── Quesa Prefix Carbon Release.h │ │ ├── Quesa Prefix Static Debug.h │ │ ├── Quesa Prefix Static Profile.h │ │ ├── Quesa Prefix Static Release.h │ │ └── Resources │ │ │ └── Info.plist │ ├── Unix │ │ ├── E3UnixDebug.cpp │ │ ├── E3UnixDrawContext.cpp │ │ ├── E3UnixPrefix.h │ │ ├── E3UnixStackCrawl.cpp │ │ ├── E3UnixStorage.cpp │ │ └── E3UnixSystem.cpp │ └── Windows │ │ ├── E3WindowsDebug.cpp │ │ ├── E3WindowsDrawContext.cpp │ │ ├── E3WindowsPrefix.h │ │ ├── E3WindowsStackCrawl.cpp │ │ ├── E3WindowsStorage.cpp │ │ ├── E3WindowsSystem.cpp │ │ └── Resources │ │ ├── Quesa Viewer.res │ │ └── Quesa.rc │ └── Renderers │ ├── Common │ ├── GLCamera.cpp │ ├── GLCamera.h │ ├── GLCocoaContext.h │ ├── GLCocoaContext.mm │ ├── GLDrawContext.cpp │ ├── GLDrawContext.h │ ├── GLGPUSharing.cpp │ ├── GLGPUSharing.h │ ├── GLImmediateVBO.cpp │ ├── GLImmediateVBO.h │ ├── GLPrefix.h │ ├── GLShadowVolumeManager.cpp │ ├── GLShadowVolumeManager.h │ ├── GLTextureLoader.cpp │ ├── GLTextureLoader.h │ ├── GLTextureManager.cpp │ ├── GLTextureManager.h │ ├── GLUtils.cpp │ ├── GLUtils.h │ ├── GLVBOManager.cpp │ ├── GLVBOManager.h │ ├── OptimizedTriMeshElement.cpp │ └── OptimizedTriMeshElement.h │ ├── Generic │ ├── GNGeometry.cpp │ ├── GNGeometry.h │ ├── GNPrefix.h │ ├── GNRegister.cpp │ ├── GNRegister.h │ ├── GNRenderer.cpp │ └── GNRenderer.h │ ├── MakeStrip │ ├── MakeStrip.cpp │ ├── MakeStrip.h │ ├── StripMaker.h │ ├── StripMaker_FindAdjacencies.cpp │ ├── StripMaker_FreeFaceSet.cpp │ ├── StripMaker_InitFaces.cpp │ ├── StripMaker_JoinStrips.cpp │ └── StripMaker_MakeSimpleStrip.cpp │ └── OpenGL │ ├── QOCalcTriMeshEdges.cpp │ ├── QOCalcTriMeshEdges.h │ ├── QOClientStates.cpp │ ├── QOClientStates.h │ ├── QOGLSLShaders.cpp │ ├── QOGLSLShaders.h │ ├── QOGLShadingLanguage.cpp │ ├── QOGLShadingLanguage.h │ ├── QOGeometry.cpp │ ├── QOLights.cpp │ ├── QOLights.h │ ├── QOMatrix.cpp │ ├── QOMatrix.h │ ├── QOOpaqueTriBuffer.cpp │ ├── QOOpaqueTriBuffer.h │ ├── QOPrefix.h │ ├── QORegister.cpp │ ├── QORegister.h │ ├── QORenderer.cpp │ ├── QORenderer.h │ ├── QOShaderProgramCache.cpp │ ├── QOShaderProgramCache.h │ ├── QOShadowMarker.cpp │ ├── QOShadowMarker.h │ ├── QOStartAndEnd.cpp │ ├── QOStatics.cpp │ ├── QOStatics.h │ ├── QOTexture.cpp │ ├── QOTexture.h │ ├── QOTransBuffer.cpp │ ├── QOTransBuffer.h │ └── QOUpdate.cpp ├── Documentation ├── developer │ ├── apiref │ │ ├── CQ3ObjectRef │ │ │ ├── CQ3ObjectRef.html │ │ │ ├── Classes │ │ │ │ └── CQ3ObjectRef │ │ │ │ │ ├── CQ3ObjectRef.html │ │ │ │ │ ├── CompositePage.html │ │ │ │ │ ├── Functions │ │ │ │ │ └── Functions.html │ │ │ │ │ ├── Vars │ │ │ │ │ └── Vars.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── toc.html │ │ │ ├── CompositePage.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── CQ3ObjectRef_Gets │ │ │ ├── CQ3ObjectRef_Gets.html │ │ │ ├── CompositePage.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── CQ3WeakObjectRef │ │ │ ├── CQ3WeakObjectRef.html │ │ │ ├── Classes │ │ │ │ └── CQ3WeakObjectRef │ │ │ │ │ ├── CQ3WeakObjectRef.html │ │ │ │ │ ├── CompositePage.html │ │ │ │ │ ├── Functions │ │ │ │ │ └── Functions.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── toc.html │ │ │ ├── CompositePage.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── MasterTOC.html │ │ ├── Q3GroupIterator │ │ │ ├── Classes │ │ │ │ └── Q3GroupIterator │ │ │ │ │ ├── CompositePage.html │ │ │ │ │ ├── Functions │ │ │ │ │ └── Functions.html │ │ │ │ │ ├── Q3GroupIterator.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── toc.html │ │ │ ├── CompositePage.html │ │ │ ├── Q3GroupIterator.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── Quesa │ │ │ ├── CompositePage.html │ │ │ ├── Constants │ │ │ │ └── Constants.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── Quesa.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaCamera │ │ │ ├── CompositePage.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaCamera.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaCustomElements │ │ │ ├── CompositePage.html │ │ │ ├── Constants │ │ │ │ └── Constants.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaCustomElements.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaDrawContext │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaDrawContext.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaErrors │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaErrors.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaExtension │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaExtension.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaGeometry │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaGeometry.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaGroup │ │ │ ├── CompositePage.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaGroup.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaIO │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaIO.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaLight │ │ │ ├── CompositePage.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaLight.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaMath │ │ │ ├── CompositePage.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaMath.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaMemory │ │ │ ├── CompositePage.html │ │ │ ├── Constants │ │ │ │ └── Constants.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaMemory.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaPick │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── PDefines │ │ │ │ └── PDefines.html │ │ │ ├── QuesaPick.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaRenderer │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaRenderer.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaSet │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaSet.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaShader │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaShader.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaStorage │ │ │ ├── CompositePage.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaStorage.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaString │ │ │ ├── CompositePage.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaString.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaStyle │ │ │ ├── CompositePage.html │ │ │ ├── Constants │ │ │ │ └── Constants.html │ │ │ ├── DataTypes │ │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaStyle.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ ├── QuesaTransform │ │ │ ├── CompositePage.html │ │ │ ├── Functions │ │ │ │ └── Functions.html │ │ │ ├── QuesaTransform.html │ │ │ ├── Structs │ │ │ │ └── Structs.html │ │ │ ├── index.html │ │ │ └── toc.html │ │ └── QuesaView │ │ │ ├── CompositePage.html │ │ │ ├── DataTypes │ │ │ └── DataTypes.html │ │ │ ├── Enums │ │ │ └── Enums.html │ │ │ ├── Functions │ │ │ └── Functions.html │ │ │ ├── QuesaView.html │ │ │ ├── index.html │ │ │ └── toc.html │ ├── book │ │ ├── 01_intro │ │ │ └── index.html │ │ ├── 02_principles │ │ │ └── index.html │ │ ├── 03_getstart │ │ │ └── index.html │ │ ├── 04_view │ │ │ └── index.html │ │ ├── 05_drawcontext │ │ │ └── index.html │ │ ├── 06_camera │ │ │ └── index.html │ │ ├── 07_light │ │ │ └── index.html │ │ ├── 08_geometry │ │ │ └── index.html │ │ ├── 09_scenes │ │ │ └── index.html │ │ ├── 10_rendering │ │ │ └── index.html │ │ ├── 11_loadsave │ │ │ └── index.html │ │ ├── 12_extensibility │ │ │ └── index.html │ │ ├── 13_mathematics │ │ │ └── index.html │ │ ├── 14_viewer │ │ │ └── index.html │ │ ├── 15_utilities │ │ │ └── index.html │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ └── quesa.jpg │ │ └── index.html │ ├── bugs.html │ ├── cvs.html │ └── todo.html ├── images │ ├── dc_icon-60.gif │ ├── logo_gray.gif │ └── logo_text.jpg ├── index.html ├── info │ ├── download.html │ ├── files │ │ └── quesa.cvs.sit │ ├── images │ │ ├── linux.jpg │ │ ├── macos8.jpg │ │ ├── macosx.jpg │ │ └── windows.jpg │ ├── list.html │ ├── list_archive.html │ ├── screenshots.html │ └── status.html ├── other │ ├── contributors.html │ ├── files │ │ ├── logo_large.jpg │ │ ├── logo_small.jpg │ │ └── quesa.3dmf │ ├── images │ │ ├── 3dworld.gif │ │ ├── FrameForge.gif │ │ ├── Mobilia.png │ │ ├── cvs.gif │ │ ├── designworkshop.gif │ │ ├── frameforge-icon.png │ │ ├── geo3d.gif │ │ ├── logo_badge.gif │ │ ├── macdev_wr_small.gif │ │ ├── meshwork.gif │ │ ├── mpa_ringlogo.gif │ │ ├── settingsun.gif │ │ ├── source.gif │ │ ├── thor.gif │ │ └── vasci.gif │ ├── links.html │ └── logo.html ├── reference │ ├── build.html │ ├── carbon.html │ ├── docs.html │ ├── images │ │ ├── Ivroyupsmall.gif │ │ ├── Modified.gif │ │ ├── Quesa.gif │ │ └── Unsupported.gif │ ├── lgpl.html │ └── licence.html └── site-styles.css ├── LICENSE ├── README.md ├── SDK ├── Examples │ ├── Background Test │ │ ├── Background Test.c │ │ ├── Background Test.mcp │ │ ├── BackgroundTest.xcconfig │ │ ├── BackgroundTest.xcodeproj │ │ │ └── project.pbxproj │ │ ├── BackgroundTest_Prefix.pch │ │ ├── Info.plist │ │ └── Project Builder │ │ │ ├── Background Test.pbproj │ │ │ └── project.pbxproj │ │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ ├── Camera Test │ │ ├── Camera Test.c │ │ ├── Camera Test.dsp │ │ ├── Camera Test.mcp │ │ └── Project Builder │ │ │ ├── Camera Test.pbproj │ │ │ └── project.pbxproj │ │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ ├── Dump Group │ │ ├── Dump Group.c │ │ ├── Dump Group.dsp │ │ ├── Dump Group.mcp │ │ └── Project Builder │ │ │ ├── Dump Group.pbproj │ │ │ └── project.pbxproj │ │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ ├── FilamentViewer │ │ ├── BakeMaterialRule.sh │ │ ├── FilamentViewer.xcodeproj │ │ │ └── project.pbxproj │ │ ├── FilamentViewer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Black.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── black40x20.jpg │ │ │ │ ├── Contents.json │ │ │ │ └── White.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── white40x20.jpg │ │ │ ├── Base.lproj │ │ │ │ ├── Document.xib │ │ │ │ └── MainMenu.xib │ │ │ ├── Cocoa Util │ │ │ │ ├── KVOObserverJW.h │ │ │ │ ├── KVOObserverJW.m │ │ │ │ ├── NSObject+JW.h │ │ │ │ └── NSObject+JW.m │ │ │ ├── Debugging │ │ │ │ ├── LogLights.cpp │ │ │ │ ├── LogLights.hpp │ │ │ │ ├── LogToConsole.h │ │ │ │ └── LogToConsole.mm │ │ │ ├── DisplayLinkView.h │ │ │ ├── DisplayLinkView.m │ │ │ ├── DisplayRefreshNotifier.h │ │ │ ├── DisplayRefreshNotifier.m │ │ │ ├── Document.h │ │ │ ├── Document.mm │ │ │ ├── FilamentView.h │ │ │ ├── FilamentView.mm │ │ │ ├── Info.plist │ │ │ ├── Quesa Utilities │ │ │ │ ├── BoundsToBox.cpp │ │ │ │ ├── BoundsToBox.h │ │ │ │ ├── CQ3AttributeSet_Inherit.cpp │ │ │ │ ├── CQ3AttributeSet_Inherit.h │ │ │ │ ├── CalcQuesaBounds.cpp │ │ │ │ ├── CalcQuesaBounds.h │ │ │ │ ├── LoadQuesaModelFromFile.cpp │ │ │ │ ├── LoadQuesaModelFromFile.h │ │ │ │ ├── MustTriMeshBeDecomposed.cpp │ │ │ │ ├── MustTriMeshBeDecomposed.h │ │ │ │ ├── NewDecomposingQuesaView.cpp │ │ │ │ ├── NewDecomposingQuesaView.h │ │ │ │ ├── NewDecomposingRenderer.cpp │ │ │ │ ├── NewDecomposingRenderer.h │ │ │ │ ├── ObjectName.cpp │ │ │ │ ├── ObjectName.h │ │ │ │ ├── QuesaStorageFromData.h │ │ │ │ ├── QuesaStorageFromData.mm │ │ │ │ ├── SynthesizeTriMeshUVs.cpp │ │ │ │ ├── SynthesizeTriMeshUVs.h │ │ │ │ ├── SynthesizeTriMeshVertexNormals.cpp │ │ │ │ └── SynthesizeTriMeshVertexNormals.h │ │ │ ├── Quesa to Filament │ │ │ │ ├── GeomCache.cpp │ │ │ │ ├── GeomCache.h │ │ │ │ ├── GeomToRenderable.cpp │ │ │ │ ├── GeomToRenderable.h │ │ │ │ ├── MakeMaterialInstance.cpp │ │ │ │ ├── MakeMaterialInstance.h │ │ │ │ ├── TextureManager.cpp │ │ │ │ └── TextureManager.h │ │ │ ├── ViewerWindowController.h │ │ │ ├── ViewerWindowController.mm │ │ │ ├── Wrappers │ │ │ │ ├── BaseMaterials.h │ │ │ │ ├── BaseMaterials.mm │ │ │ │ ├── EngineSharedPtr.cpp │ │ │ │ ├── EngineSharedPtr.hpp │ │ │ │ ├── FilaEntity.cpp │ │ │ │ ├── FilaEntity.h │ │ │ │ ├── FilaGeom.cpp │ │ │ │ ├── FilaGeom.h │ │ │ │ ├── FilaLight.cpp │ │ │ │ ├── FilaLight.h │ │ │ │ ├── FilaTransform.cpp │ │ │ │ ├── FilaTransform.h │ │ │ │ ├── RenderableGeom.cpp │ │ │ │ └── RenderableGeom.h │ │ │ ├── main.m │ │ │ ├── materials source │ │ │ │ ├── litAlphaTest.mat │ │ │ │ ├── litOpaque.mat │ │ │ │ ├── litOpaqueVertColor.mat │ │ │ │ ├── litTransparent.mat │ │ │ │ ├── litTransparentTwoSide.mat │ │ │ │ ├── outline.mat │ │ │ │ ├── silhouette.mat │ │ │ │ ├── unlit.mat │ │ │ │ ├── unlitDeviceCoord.mat │ │ │ │ ├── unlitLowDim.mat │ │ │ │ ├── unlitTexturedDeviceCoord.mat │ │ │ │ └── unlitVertColor.mat │ │ │ ├── ndc-foreground.3dmf │ │ │ └── ndc-textured-background.3dmf │ │ ├── README.md │ │ ├── proj.xcconfig │ │ ├── targ_Metal.xcconfig │ │ └── targ_OpenGL.xcconfig │ ├── Geom Test │ │ ├── Geom Test.cpp │ │ ├── Geom Test.sln │ │ ├── Geom Test.vcproj │ │ ├── Geom Test.vcxproj │ │ ├── Geom Test.vcxproj.filters │ │ ├── Geom Test.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Geom Test_Prefix.pch │ │ ├── GeomTest-VS.props │ │ ├── GeomTest.icns │ │ ├── GeomTest.xcconfig │ │ └── XCode-Info.plist │ ├── HIQuesaView │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── main.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.xib │ │ ├── HIFramework │ │ │ ├── HIFramework.h │ │ │ ├── TApplication.cp │ │ │ ├── TApplication.h │ │ │ ├── TCarbonEvent.cp │ │ │ ├── TCarbonEvent.h │ │ │ ├── TEventHandler.cp │ │ │ ├── TEventHandler.h │ │ │ ├── TNib.cp │ │ │ ├── TNib.h │ │ │ ├── TObject.cp │ │ │ ├── TObject.h │ │ │ ├── TRect.cp │ │ │ ├── TRect.h │ │ │ ├── TView.cp │ │ │ ├── TView.h │ │ │ ├── TWindow.cp │ │ │ └── TWindow.h │ │ ├── HIQuesaView.cpp │ │ ├── HIQuesaView.h │ │ ├── HIQuesaView.xcodeproj │ │ │ └── project.pbxproj │ │ ├── HIQuesaViewProj.xcconfig │ │ ├── HIQuesaViewTarget.xcconfig │ │ ├── HIQuesaView_Prefix.pch │ │ ├── Info.plist │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MakeTabsSwitchPanels.cpp │ │ ├── MakeTabsSwitchPanels.h │ │ ├── READ ME.txt │ │ └── main.cp │ ├── Import Test │ │ ├── Import Test.c │ │ ├── Import Test.dsp │ │ ├── Import Test.mcp │ │ └── Project Builder │ │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ │ └── Import Test.pbproj │ │ │ └── project.pbxproj │ ├── Light Test │ │ ├── Light Test.c │ │ ├── Light Test.mcp │ │ ├── Light test.dsp │ │ └── Project Builder │ │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ │ └── Light Test.pbproj │ │ │ └── project.pbxproj │ ├── Qut │ │ ├── Mac │ │ │ ├── MainMenu.xib │ │ │ ├── Qut Prefix Carbon.h │ │ │ ├── QutMac.h │ │ │ └── QutMac.mm │ │ ├── Qut.cpp │ │ ├── Qut.h │ │ ├── QutInternal.h │ │ ├── QutTexture.cpp │ │ ├── QutTexture.h │ │ ├── Unix │ │ │ └── QutUnix.c │ │ └── Windows │ │ │ ├── Qut.rc │ │ │ ├── QutWindows.cpp │ │ │ └── resource.h │ ├── Shader Test │ │ ├── Project Builder │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── Shader Test.pbproj │ │ │ │ └── project.pbxproj │ │ ├── Shader Test.c │ │ ├── Shader Test.dsp │ │ └── Shader Test.mcp │ ├── StereoDemo │ │ ├── DemoController.h │ │ ├── DemoController.mm │ │ ├── DemoGeometry.h │ │ ├── DemoGeometry.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ ├── Info-Quesa3DView.plist │ │ ├── Quesa3DView.h │ │ ├── Quesa3DView.m │ │ ├── QuesaCocoaUtil.h │ │ ├── QuesaCocoaUtil.m │ │ ├── StereoDemo.xcodeproj │ │ │ └── project.pbxproj │ │ ├── main.m │ │ └── project.xcconfig │ ├── Support Files │ │ ├── Images │ │ │ ├── 1.png │ │ │ ├── 1.tga │ │ │ ├── 2.png │ │ │ ├── 2.tga │ │ │ ├── 3.png │ │ │ ├── 3.tga │ │ │ ├── 4.png │ │ │ ├── 4.tga │ │ │ ├── 5.png │ │ │ ├── 5.tga │ │ │ ├── 6.png │ │ │ ├── 6.tga │ │ │ ├── Blue Square.jpg │ │ │ ├── Golf Balls.jpg │ │ │ ├── Quesa.jpg │ │ │ ├── Quesa.tga │ │ │ └── US_$5_obverse.tga │ │ └── Models │ │ │ ├── 3DMF │ │ │ ├── F15.3dmf │ │ │ ├── F18.3dmf │ │ │ ├── Line.3dmf │ │ │ ├── Marker.3dmf │ │ │ ├── PixMap.3dmf │ │ │ ├── Pod Racer.3dmf │ │ │ ├── Point.3dmf │ │ │ ├── PolyLine.3dmf │ │ │ ├── Quesa Logo.3dmf │ │ │ ├── Triangle.3dmf │ │ │ └── nurb.3DMF │ │ │ ├── 3DS │ │ │ ├── tie-in.3ds │ │ │ ├── tiefight.3ds │ │ │ ├── xwing.3ds │ │ │ └── ywing.3ds │ │ │ └── VRML │ │ │ └── quesa_logo.wrl │ └── Viewer Test │ │ ├── Viewer Test.c │ │ └── Viewer Test.mcp ├── Extras │ ├── 3DS-FileSupport │ │ ├── COPYING │ │ ├── Projects │ │ │ ├── 3DS-FileSupport-Win32.mcp.xml │ │ │ ├── 3DS-FileSupport.sln │ │ │ ├── 3DS-FileSupport.vcproj │ │ │ ├── 3DS-FileSupport.vcxproj │ │ │ ├── 3DS-FileSupport.vcxproj.filters │ │ │ ├── 3DS-FileSupport.xcconfig │ │ │ └── 3DS-FileSupport.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── Resources.rc │ │ │ └── version.h │ │ ├── Source │ │ │ ├── 3DS-FileSupport_Prefix.pch │ │ │ ├── C3DSReader.cpp │ │ │ ├── C3DSReader.h │ │ │ ├── C3DSWriter.cpp │ │ │ ├── C3DSWriter.h │ │ │ ├── main.cpp │ │ │ ├── quesa-methods.cpp │ │ │ └── quesa-methods.h │ │ └── lib3ds │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── acconfig.h │ │ │ ├── aclocal.m4 │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── examples │ │ │ ├── 3ds2rib.c │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── glstub.h.in │ │ │ └── player.c │ │ │ ├── install-sh │ │ │ ├── lib3ds-config.1 │ │ │ ├── lib3ds-config.in │ │ │ ├── lib3ds.m4 │ │ │ ├── lib3ds.spec │ │ │ ├── lib3ds │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── atmosphere.c │ │ │ ├── atmosphere.h │ │ │ ├── background.c │ │ │ ├── background.h │ │ │ ├── camera.c │ │ │ ├── camera.h │ │ │ ├── chunk.c │ │ │ ├── chunk.h │ │ │ ├── chunktable.h │ │ │ ├── chunktable.sed │ │ │ ├── ease.c │ │ │ ├── ease.h │ │ │ ├── file.c │ │ │ ├── file.h │ │ │ ├── float.c │ │ │ ├── float.h │ │ │ ├── io.c │ │ │ ├── io.h │ │ │ ├── light.c │ │ │ ├── light.h │ │ │ ├── material.c │ │ │ ├── material.h │ │ │ ├── matrix.c │ │ │ ├── matrix.h │ │ │ ├── mesh.c │ │ │ ├── mesh.h │ │ │ ├── node.c │ │ │ ├── node.h │ │ │ ├── quat.c │ │ │ ├── quat.h │ │ │ ├── shadow.c │ │ │ ├── shadow.h │ │ │ ├── tcb.c │ │ │ ├── tcb.h │ │ │ ├── tracks.c │ │ │ ├── tracks.h │ │ │ ├── types.h │ │ │ ├── types.txt │ │ │ ├── vector.c │ │ │ ├── vector.h │ │ │ ├── viewport.c │ │ │ └── viewport.h │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ ├── mkinstalldirs │ │ │ ├── msvc │ │ │ ├── 3ds2m.dsp │ │ │ ├── 3ds2rib.dsp │ │ │ ├── 3dsdump.dsp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── all.dsp │ │ │ ├── lib3ds.dsw │ │ │ ├── lib3ds_dll.dsp │ │ │ ├── lib3ds_lib.dsp │ │ │ └── player.dsp │ │ │ ├── stamp-h.in │ │ │ └── tools │ │ │ ├── 3ds2m.1 │ │ │ ├── 3ds2m.c │ │ │ ├── 3dsdump.1 │ │ │ ├── 3dsdump.c │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ ├── 3dsReader │ │ ├── 3dsReader.c │ │ ├── 3dsReader.h │ │ ├── 3dsReader.mcp │ │ ├── 3dsReader.mcp.exp │ │ ├── 3dsreader.sln │ │ └── 3dsreader.vcproj │ ├── Binify3DMF │ │ ├── Binify-proj.xcconfig │ │ ├── Binify3DMF.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Readme.txt │ │ └── Source │ │ │ ├── Read3DMF.cpp │ │ │ ├── Read3DMF.h │ │ │ ├── Write3DMF.cpp │ │ │ ├── Write3DMF.h │ │ │ └── main.cpp │ ├── Cocoa Example │ │ └── Quesa3DView │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── DemoGeometry.h │ │ │ ├── DemoGeometry.mm │ │ │ ├── Info-Quesa3DView.plist │ │ │ ├── Quesa3DView.h │ │ │ ├── Quesa3DView.mm │ │ │ ├── Quesa3DView.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── QuesaCocoaUtil.h │ │ │ ├── QuesaCocoaUtil.mm │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── MainMenu.xib │ │ │ └── WindowRect.png │ │ │ ├── main.m │ │ │ └── project.xcconfig │ ├── Math Test │ │ ├── Math Test.cp │ │ ├── Math Test.mcp │ │ └── QD3D_1.6.txt │ ├── OBJ.Reader │ │ ├── OBJ.Reader.c │ │ ├── OBJ.Reader.h │ │ ├── OBJ.Reader.mcp │ │ ├── OBJ.Reader.mcp.exp │ │ ├── WavefrontOBJ.c │ │ └── wavefrontobj.h │ ├── Queeg │ │ ├── Notes │ │ │ ├── Credits │ │ │ ├── Non-Monolithic Nature of Queeg │ │ │ ├── Objectives & Plan │ │ │ └── Queeg Progress Log │ │ ├── Queeg Demo 1 │ │ │ ├── About the Demo │ │ │ ├── Model Source │ │ │ │ ├── About Model Source │ │ │ │ ├── background.mesh │ │ │ │ ├── background.pov │ │ │ │ ├── map.mesh │ │ │ │ └── racer.mesh │ │ │ ├── Queeg Demo.cpp │ │ │ ├── Queeg Demo.mcp │ │ │ ├── background.3dm │ │ │ ├── map.3dm │ │ │ ├── racer.3dm │ │ │ └── target.3dm │ │ └── Queeg Source │ │ │ ├── QGCamera.cpp │ │ │ ├── QGCamera.h │ │ │ ├── QGDemoInput.h │ │ │ ├── QGDemoInput_Mac.cpp │ │ │ ├── QGDemoInput_Win.cpp │ │ │ ├── QGObject.cpp │ │ │ ├── QGObject.h │ │ │ ├── QGScene.cpp │ │ │ ├── QGScene.h │ │ │ ├── QGTriMesh.cpp │ │ │ ├── QGTriMesh.h │ │ │ ├── QGUtils.cpp │ │ │ ├── QGUtils.h │ │ │ ├── QueegMacros.h │ │ │ └── SimpleVector.h │ ├── Quesa Model Viewer │ │ ├── AdvMoof Source │ │ │ ├── AEDescUtils.cpp │ │ │ ├── AEDescUtils.h │ │ │ ├── AdvApp.cpp │ │ │ ├── AdvApp.h │ │ │ ├── AdvWindow.cpp │ │ │ ├── AdvWindow.h │ │ │ ├── Dragger.cpp │ │ │ ├── Dragger.h │ │ │ ├── MenuWindow.cpp │ │ │ ├── MenuWindow.h │ │ │ ├── MoofDialog.cpp │ │ │ ├── MoofDialog.h │ │ │ ├── MoofOM.cpp │ │ │ ├── MoofOM.h │ │ │ ├── Opener.cpp │ │ │ ├── Opener.h │ │ │ ├── Saver.cpp │ │ │ ├── Saver.h │ │ │ └── ScriptDictionary.h │ │ ├── Carbon Resources.r │ │ ├── Custom Source │ │ │ ├── AboutBox.cpp │ │ │ ├── AboutBox.h │ │ │ ├── CarbonPrefix.h │ │ │ ├── InfoWindow.cpp │ │ │ ├── InfoWindow.h │ │ │ ├── MyApp.cpp │ │ │ ├── MyApp.h │ │ │ ├── ResourceIDs.h │ │ │ ├── Translator.h │ │ │ ├── ViewerWindow.cpp │ │ │ └── ViewerWindow.h │ │ ├── Info.plist │ │ ├── Moof Source │ │ │ ├── MoofApp.cpp │ │ │ ├── MoofApp.h │ │ │ ├── MoofResources.h │ │ │ ├── MoofWindow.cpp │ │ │ └── MoofWindow.h │ │ ├── Pane Source │ │ │ ├── Pane.h │ │ │ ├── TextPane.cpp │ │ │ ├── TextPane.h │ │ │ ├── UrlPane.cpp │ │ │ └── UrlPane.h │ │ ├── Quesa Model Viewer.mcp │ │ ├── icons-3DMF.r │ │ ├── icons-APPL.r │ │ ├── main program.cpp │ │ └── project-resources.r │ ├── Rayshade │ │ ├── Devdoc.html │ │ ├── Projects │ │ │ ├── MacOS │ │ │ │ ├── Carbon Debug.h │ │ │ │ ├── Carbon Profile.h │ │ │ │ ├── Carbon Release.h │ │ │ │ ├── Classic Debug.h │ │ │ │ ├── Classic Profile.h │ │ │ │ ├── Classic Release.h │ │ │ │ ├── Rayshade.mcp │ │ │ │ ├── Rayshade.mcp.xml │ │ │ │ ├── Rayshade.xcconfig │ │ │ │ └── Rayshade.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── Windows │ │ │ │ ├── RayShade.mcp.xml │ │ │ │ ├── Rayshade.sln │ │ │ │ ├── Rayshade.vcproj │ │ │ │ ├── Rayshade.vcxproj │ │ │ │ ├── Rayshade.vcxproj.filters │ │ │ │ ├── Win Prefix Debug.h │ │ │ │ └── Win Prefix Release.h │ │ ├── Rayshade.html │ │ ├── Resources │ │ │ └── MacOS │ │ │ │ ├── Info.plist │ │ │ │ └── RayshadeVersion.r │ │ └── Sources │ │ │ ├── QD3DPlugin │ │ │ ├── CurrentVersion.h │ │ │ ├── MacOS │ │ │ │ └── RS_Memory.c │ │ │ ├── RSPlugin.cpp │ │ │ ├── RSPlugin.h │ │ │ ├── RSPrefix.h │ │ │ ├── RSRegister.cpp │ │ │ ├── RS_Attributes.cpp │ │ │ ├── RS_Attributes.h │ │ │ ├── RS_Geometry.cpp │ │ │ ├── RS_Rasterize.cpp │ │ │ ├── RS_Rasterize.h │ │ │ ├── RS_ScanLine_Rasterize.h │ │ │ ├── RS_Texture.cpp │ │ │ ├── RS_Texture.h │ │ │ └── RS_Update.cpp │ │ │ ├── RTInterface │ │ │ ├── RT.cpp │ │ │ ├── RT.h │ │ │ ├── RT_DrawContext.h │ │ │ ├── RT_Geometry.cpp │ │ │ ├── RT_Geometry.h │ │ │ ├── RT_Light.cpp │ │ │ ├── RT_Light.h │ │ │ ├── RT_Raytrace.cpp │ │ │ ├── RT_Surface.cpp │ │ │ ├── RT_Surface.h │ │ │ ├── RT_Texture.cpp │ │ │ ├── RT_Texture.h │ │ │ └── RT_Tracer.h │ │ │ ├── Rayshade │ │ │ ├── LibCommon │ │ │ │ ├── color.h │ │ │ │ ├── common.h │ │ │ │ ├── error.h │ │ │ │ ├── expr.cpp │ │ │ │ ├── expr.h │ │ │ │ ├── memory.cpp │ │ │ │ ├── ray.h │ │ │ │ ├── rotate.cpp │ │ │ │ ├── rotate.h │ │ │ │ ├── sampling.cpp │ │ │ │ ├── sampling.h │ │ │ │ ├── scale.cpp │ │ │ │ ├── scale.h │ │ │ │ ├── transform.cpp │ │ │ │ ├── transform.h │ │ │ │ ├── translate.cpp │ │ │ │ ├── translate.h │ │ │ │ ├── vecmath.cpp │ │ │ │ ├── vector.h │ │ │ │ ├── xform.cpp │ │ │ │ └── xform.h │ │ │ ├── LibImage │ │ │ │ ├── image.cpp │ │ │ │ └── image.h │ │ │ ├── LibLight │ │ │ │ ├── extended.cpp │ │ │ │ ├── extended.h │ │ │ │ ├── infinite.cpp │ │ │ │ ├── infinite.h │ │ │ │ ├── jittered.cpp │ │ │ │ ├── jittered.h │ │ │ │ ├── light.cpp │ │ │ │ ├── light.h │ │ │ │ ├── point.cpp │ │ │ │ ├── point.h │ │ │ │ ├── shadow.cpp │ │ │ │ ├── spot.cpp │ │ │ │ └── spot.h │ │ │ ├── LibObj │ │ │ │ ├── blob.cpp │ │ │ │ ├── blob.h │ │ │ │ ├── bounds.cpp │ │ │ │ ├── bounds.h │ │ │ │ ├── box.cpp │ │ │ │ ├── box.h │ │ │ │ ├── cone.cpp │ │ │ │ ├── cone.h │ │ │ │ ├── csg.cpp │ │ │ │ ├── csg.h │ │ │ │ ├── cylinder.cpp │ │ │ │ ├── cylinder.h │ │ │ │ ├── disc.cpp │ │ │ │ ├── disc.h │ │ │ │ ├── geom.cpp │ │ │ │ ├── geom.h │ │ │ │ ├── grid.cpp │ │ │ │ ├── grid.h │ │ │ │ ├── hf.cpp │ │ │ │ ├── hf.h │ │ │ │ ├── instance.cpp │ │ │ │ ├── instance.h │ │ │ │ ├── intersect.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── list.h │ │ │ │ ├── plane.cpp │ │ │ │ ├── plane.h │ │ │ │ ├── poly.cpp │ │ │ │ ├── poly.h │ │ │ │ ├── roots.cpp │ │ │ │ ├── sphere.cpp │ │ │ │ ├── sphere.h │ │ │ │ ├── torus.cpp │ │ │ │ ├── torus.h │ │ │ │ ├── triangle.cpp │ │ │ │ └── triangle.h │ │ │ ├── LibShade │ │ │ │ ├── builtin.cpp │ │ │ │ ├── builtin.h │ │ │ │ ├── defaults.h │ │ │ │ ├── funcdefs.h │ │ │ │ ├── lightdef.cpp │ │ │ │ ├── misc.cpp │ │ │ │ ├── objdef.cpp │ │ │ │ ├── options.h │ │ │ │ ├── picture.h │ │ │ │ ├── rayshade.h │ │ │ │ ├── setup.cpp │ │ │ │ ├── shade.cpp │ │ │ │ ├── shade.h │ │ │ │ ├── stats.cpp │ │ │ │ ├── stats.h │ │ │ │ ├── surfdef.cpp │ │ │ │ ├── viewing.cpp │ │ │ │ └── viewing.h │ │ │ ├── LibSurf │ │ │ │ ├── atmosphere.cpp │ │ │ │ ├── atmosphere.h │ │ │ │ ├── fog.cpp │ │ │ │ ├── fog.h │ │ │ │ ├── fogdeck.cpp │ │ │ │ ├── fogdeck.h │ │ │ │ ├── mist.cpp │ │ │ │ ├── mist.h │ │ │ │ ├── surface.cpp │ │ │ │ ├── surface.h │ │ │ │ └── surfshade.cpp │ │ │ ├── LibText │ │ │ │ ├── CImageTexture.cpp │ │ │ │ ├── CImageTexture.h │ │ │ │ ├── CTexture.cpp │ │ │ │ ├── CTexture.h │ │ │ │ ├── blotch.cpp │ │ │ │ ├── blotch.h │ │ │ │ ├── bump.cpp │ │ │ │ ├── bump.h │ │ │ │ ├── checker.cpp │ │ │ │ ├── checker.h │ │ │ │ ├── fbm.cpp │ │ │ │ ├── fbm.h │ │ │ │ ├── fbmbump.cpp │ │ │ │ ├── fbmbump.h │ │ │ │ ├── gloss.cpp │ │ │ │ ├── gloss.h │ │ │ │ ├── mapping.cpp │ │ │ │ ├── mapping.h │ │ │ │ ├── marble.cpp │ │ │ │ ├── marble.h │ │ │ │ ├── mount.cpp │ │ │ │ ├── mount.h │ │ │ │ ├── noise.cpp │ │ │ │ ├── sky.cpp │ │ │ │ ├── sky.h │ │ │ │ ├── stripe.cpp │ │ │ │ ├── stripe.h │ │ │ │ ├── textaux.cpp │ │ │ │ ├── textureutils.h │ │ │ │ ├── windy.cpp │ │ │ │ ├── windy.h │ │ │ │ ├── wood.cpp │ │ │ │ └── wood.h │ │ │ └── config.h │ │ │ └── Rayshade_Prefix.pch │ ├── SampleImporter │ │ ├── E3FFormat_Sample.c │ │ ├── E3FFormat_Sample.h │ │ ├── SampleImporter.dsp │ │ ├── SampleImporter.mcp │ │ └── SampleImporter.mcp.exp │ ├── Textify3DMF │ │ ├── ReadMe.txt │ │ ├── Source │ │ │ ├── Controller.cpp │ │ │ ├── Controller.h │ │ │ ├── Fetch.cpp │ │ │ ├── Fetch.h │ │ │ ├── FetchBE.cpp │ │ │ ├── FetchBE.h │ │ │ ├── FetchLE.cpp │ │ │ ├── FetchLE.h │ │ │ ├── FormatException.h │ │ │ ├── RegisterHandlers.cpp │ │ │ ├── RegisterHandlers.h │ │ │ ├── Textify3DMF.cpp │ │ │ ├── Textify3DMF.h │ │ │ ├── TypeHandler.cpp │ │ │ ├── TypeHandler.h │ │ │ └── TypeHandlers │ │ │ │ ├── AttributeSetLists │ │ │ │ ├── VertexAttributeSetList.cpp │ │ │ │ └── VertexAttributeSetList.h │ │ │ │ ├── AttributeSets │ │ │ │ ├── AttributeSet.cpp │ │ │ │ ├── AttributeSet.h │ │ │ │ ├── BottomCapAttributeSet.cpp │ │ │ │ ├── BottomCapAttributeSet.h │ │ │ │ ├── FaceCapAttributeSet.cpp │ │ │ │ ├── FaceCapAttributeSet.h │ │ │ │ ├── TopCapAttributeSet.cpp │ │ │ │ └── TopCapAttributeSet.h │ │ │ │ ├── Attributes │ │ │ │ ├── AmbientCoefficient.cpp │ │ │ │ ├── AmbientCoefficient.h │ │ │ │ ├── DiffuseColor.cpp │ │ │ │ ├── DiffuseColor.h │ │ │ │ ├── EmissiveColor.cpp │ │ │ │ ├── EmissiveColor.h │ │ │ │ ├── HighlightState.cpp │ │ │ │ ├── HighlightState.h │ │ │ │ ├── Normal.cpp │ │ │ │ ├── Normal.h │ │ │ │ ├── ShadingUV.cpp │ │ │ │ ├── ShadingUV.h │ │ │ │ ├── SpecularColor.cpp │ │ │ │ ├── SpecularColor.h │ │ │ │ ├── SpecularControl.cpp │ │ │ │ ├── SpecularControl.h │ │ │ │ ├── SurfaceTangent.cpp │ │ │ │ ├── SurfaceTangent.h │ │ │ │ ├── SurfaceUV.cpp │ │ │ │ ├── SurfaceUV.h │ │ │ │ ├── TransparencyColor.cpp │ │ │ │ └── TransparencyColor.h │ │ │ │ ├── Cameras │ │ │ │ ├── CameraPlacement.cpp │ │ │ │ ├── CameraPlacement.h │ │ │ │ ├── CameraRange.cpp │ │ │ │ ├── CameraRange.h │ │ │ │ ├── CameraViewPort.cpp │ │ │ │ ├── CameraViewPort.h │ │ │ │ ├── OrthographicCamera.cpp │ │ │ │ ├── OrthographicCamera.h │ │ │ │ ├── ViewAngleAspectCamera.cpp │ │ │ │ ├── ViewAngleAspectCamera.h │ │ │ │ ├── ViewPlaneCamera.cpp │ │ │ │ └── ViewPlaneCamera.h │ │ │ │ ├── Geometries │ │ │ │ ├── AttributeArray.cpp │ │ │ │ ├── AttributeArray.h │ │ │ │ ├── Box.cpp │ │ │ │ ├── Box.h │ │ │ │ ├── Caps.cpp │ │ │ │ ├── Caps.h │ │ │ │ ├── Cone.cpp │ │ │ │ ├── Cone.h │ │ │ │ ├── Cylinder.cpp │ │ │ │ ├── Cylinder.h │ │ │ │ ├── Disk.cpp │ │ │ │ ├── Disk.h │ │ │ │ ├── Ellipse.cpp │ │ │ │ ├── Ellipse.h │ │ │ │ ├── Ellipsoid.cpp │ │ │ │ ├── Ellipsoid.h │ │ │ │ ├── GeneralPolygon.cpp │ │ │ │ ├── GeneralPolygon.h │ │ │ │ ├── GeneralPolygonHint.cpp │ │ │ │ ├── GeneralPolygonHint.h │ │ │ │ ├── Line.cpp │ │ │ │ ├── Line.h │ │ │ │ ├── Marker.cpp │ │ │ │ ├── Marker.h │ │ │ │ ├── Mesh.cpp │ │ │ │ ├── Mesh.h │ │ │ │ ├── NURBCurve.cpp │ │ │ │ ├── NURBCurve.h │ │ │ │ ├── NURBPatch.cpp │ │ │ │ ├── NURBPatch.h │ │ │ │ ├── PixmapMarker.cpp │ │ │ │ ├── PixmapMarker.h │ │ │ │ ├── Point.cpp │ │ │ │ ├── Point.h │ │ │ │ ├── PolyLine.cpp │ │ │ │ ├── PolyLine.h │ │ │ │ ├── Polygon.cpp │ │ │ │ ├── Polygon.h │ │ │ │ ├── Polyhedron.cpp │ │ │ │ ├── Polyhedron.h │ │ │ │ ├── Torus.cpp │ │ │ │ ├── Torus.h │ │ │ │ ├── TriGrid.cpp │ │ │ │ ├── TriGrid.h │ │ │ │ ├── TriMesh.cpp │ │ │ │ ├── TriMesh.h │ │ │ │ ├── Triangle.cpp │ │ │ │ └── Triangle.h │ │ │ │ ├── Groups │ │ │ │ ├── BeginGroup.cpp │ │ │ │ ├── BeginGroup.h │ │ │ │ ├── DisplayGroup.cpp │ │ │ │ ├── DisplayGroup.h │ │ │ │ ├── DisplayGroupBBox.cpp │ │ │ │ ├── DisplayGroupBBox.h │ │ │ │ ├── DisplayGroupState.cpp │ │ │ │ ├── DisplayGroupState.h │ │ │ │ ├── EndGroup.cpp │ │ │ │ ├── EndGroup.h │ │ │ │ ├── Group.cpp │ │ │ │ ├── Group.h │ │ │ │ ├── IOProxyDisplayGroup.cpp │ │ │ │ ├── IOProxyDisplayGroup.h │ │ │ │ ├── InfoGroup.cpp │ │ │ │ ├── InfoGroup.h │ │ │ │ ├── LightGroup.cpp │ │ │ │ ├── LightGroup.h │ │ │ │ ├── OrderedDisplayGroup.cpp │ │ │ │ └── OrderedDisplayGroup.h │ │ │ │ ├── Lights │ │ │ │ ├── AmbientLight.cpp │ │ │ │ ├── AmbientLight.h │ │ │ │ ├── DirectionalLight.cpp │ │ │ │ ├── DirectionalLight.h │ │ │ │ ├── LightData.cpp │ │ │ │ ├── LightData.h │ │ │ │ ├── PointLight.cpp │ │ │ │ ├── PointLight.h │ │ │ │ ├── SpotLight.cpp │ │ │ │ └── SpotLight.h │ │ │ │ ├── Miscellaneous │ │ │ │ ├── CString.cpp │ │ │ │ ├── CString.h │ │ │ │ ├── NameElement.cpp │ │ │ │ ├── NameElement.h │ │ │ │ ├── NormalMapElement.cpp │ │ │ │ ├── NormalMapElement.h │ │ │ │ ├── ProcessUnknownType.cpp │ │ │ │ ├── ProcessUnknownType.h │ │ │ │ ├── Reference.cpp │ │ │ │ ├── Reference.h │ │ │ │ ├── SpecularMapElement.cpp │ │ │ │ ├── SpecularMapElement.h │ │ │ │ ├── TableOfContents.cpp │ │ │ │ └── TableOfContents.h │ │ │ │ ├── Renderers │ │ │ │ ├── GenericRenderer.cpp │ │ │ │ └── GenericRenderer.h │ │ │ │ ├── Shaders │ │ │ │ ├── LambertIllumination.cpp │ │ │ │ ├── LambertIllumination.h │ │ │ │ ├── NullIllumination.cpp │ │ │ │ ├── NullIllumination.h │ │ │ │ ├── PhongIllumination.cpp │ │ │ │ ├── PhongIllumination.h │ │ │ │ ├── PixmapTexture.cpp │ │ │ │ ├── PixmapTexture.h │ │ │ │ ├── TextureShader.cpp │ │ │ │ ├── TextureShader.h │ │ │ │ ├── TextureShaderBoundary.cpp │ │ │ │ └── TextureShaderBoundary.h │ │ │ │ ├── SimpleTypeHandler.cpp │ │ │ │ ├── SimpleTypeHandler.h │ │ │ │ ├── Styles │ │ │ │ ├── AntialiasStyle.cpp │ │ │ │ ├── AntialiasStyle.h │ │ │ │ ├── BackfacingStyle.cpp │ │ │ │ ├── BackfacingStyle.h │ │ │ │ ├── CastShadowsStyle.cpp │ │ │ │ ├── CastShadowsStyle.h │ │ │ │ ├── DepthRangeStyle.cpp │ │ │ │ ├── DepthRangeStyle.h │ │ │ │ ├── FillStyle.cpp │ │ │ │ ├── FillStyle.h │ │ │ │ ├── FogStyle.cpp │ │ │ │ ├── FogStyle.h │ │ │ │ ├── HighlightStyle.cpp │ │ │ │ ├── HighlightStyle.h │ │ │ │ ├── InterpolationStyle.cpp │ │ │ │ ├── InterpolationStyle.h │ │ │ │ ├── LineWidthStyle.cpp │ │ │ │ ├── LineWidthStyle.h │ │ │ │ ├── OrientationStyle.cpp │ │ │ │ ├── OrientationStyle.h │ │ │ │ ├── PickIDStyle.cpp │ │ │ │ ├── PickIDStyle.h │ │ │ │ ├── PickPartsStyle.cpp │ │ │ │ ├── PickPartsStyle.h │ │ │ │ ├── ReceiveShadowsStyle.cpp │ │ │ │ ├── ReceiveShadowsStyle.h │ │ │ │ ├── SubdivisionStyle.cpp │ │ │ │ ├── SubdivisionStyle.h │ │ │ │ ├── WriteSwitchStyle.cpp │ │ │ │ └── WriteSwitchStyle.h │ │ │ │ ├── Transforms │ │ │ │ ├── Matrix.cpp │ │ │ │ ├── Matrix.h │ │ │ │ ├── Quaternion.cpp │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rasterize.cpp │ │ │ │ ├── Rasterize.h │ │ │ │ ├── Reset.cpp │ │ │ │ ├── Reset.h │ │ │ │ ├── Rotate.cpp │ │ │ │ ├── Rotate.h │ │ │ │ ├── RotateAboutAxis.cpp │ │ │ │ ├── RotateAboutAxis.h │ │ │ │ ├── RotateAboutPoint.cpp │ │ │ │ ├── RotateAboutPoint.h │ │ │ │ ├── Scale.cpp │ │ │ │ ├── Scale.h │ │ │ │ ├── ShaderUVTransform.cpp │ │ │ │ ├── ShaderUVTransform.h │ │ │ │ ├── Translate.cpp │ │ │ │ └── Translate.h │ │ │ │ └── View Objects │ │ │ │ ├── ImageClearColor.cpp │ │ │ │ ├── ImageClearColor.h │ │ │ │ ├── ViewHints.cpp │ │ │ │ └── ViewHints.h │ │ ├── Textify-proj.xcconfig │ │ ├── Textify3DMF.xcodeproj │ │ │ └── project.pbxproj │ │ ├── main.cpp │ │ └── prefix.h │ ├── Utility Sources │ │ ├── Creation Algorithms │ │ │ ├── SmartDuplicate.cpp │ │ │ └── SmartDuplicate.h │ │ └── Mutating Algorithms │ │ │ ├── ApplyTransformsToGeometries.cpp │ │ │ ├── ApplyTransformsToGeometries.h │ │ │ ├── DecomposeGeometries.cpp │ │ │ ├── DecomposeGeometries.h │ │ │ ├── DeleteObjectsOfType.cpp │ │ │ ├── DeleteObjectsOfType.h │ │ │ ├── FindTriMeshFaceData.cpp │ │ │ ├── FindTriMeshFaceData.h │ │ │ ├── FindTriMeshVertexData.cpp │ │ │ ├── FindTriMeshVertexData.h │ │ │ ├── FlattenHierarchy.cpp │ │ │ ├── FlattenHierarchy.h │ │ │ ├── LowerAttributesToGeometries.cpp │ │ │ ├── LowerAttributesToGeometries.h │ │ │ ├── MergeNearTriMeshPoints.cpp │ │ │ ├── MergeNearTriMeshPoints.h │ │ │ ├── MergeTriMeshList.cpp │ │ │ ├── MergeTriMeshList.h │ │ │ ├── MergeTriMeshes.cpp │ │ │ ├── MergeTriMeshes.h │ │ │ ├── OptimizeTriMeshes.cpp │ │ │ ├── OptimizeTriMeshes.h │ │ │ ├── RemoveExtraReferences.cpp │ │ │ ├── RemoveExtraReferences.h │ │ │ ├── SubdivideTriMesh.cpp │ │ │ ├── SubdivideTriMesh.h │ │ │ ├── TransformGeometry.cpp │ │ │ └── TransformGeometry.h │ └── VRML Reader │ │ ├── Projects │ │ ├── VRML-Reader Visual Studio │ │ │ ├── CommonProperties.props │ │ │ ├── NoOpenGL.props │ │ │ ├── ReadMe.txt │ │ │ ├── VRML-Reader.sln │ │ │ ├── VRML-Reader.vcxproj │ │ │ └── VRML-Reader.vcxproj.filters │ │ ├── VRML-Reader.xcodeproj │ │ │ └── project.pbxproj │ │ └── VRML-reader.xcconfig │ │ ├── Resources │ │ ├── Info.plist │ │ ├── Reader-CFM.r │ │ ├── Reader.plc │ │ ├── Reader.rc │ │ └── version.h │ │ ├── Source │ │ ├── CVRMLReader.cpp │ │ ├── CVRMLReader.h │ │ ├── Precompiled Headers │ │ │ ├── Mac-CFM-prefix.pch++ │ │ │ ├── Mac-MachO-prefix.pch++ │ │ │ └── VRML-Reader_Prefix.pch │ │ ├── Utilities │ │ │ ├── ConvertNumericArray.cpp │ │ │ ├── ConvertNumericArray.h │ │ │ ├── CreatePixelTexture.cpp │ │ │ ├── CreatePixelTexture.h │ │ │ ├── CreateTextureFromURL.cpp │ │ │ ├── CreateTextureFromURL.h │ │ │ ├── GetArrayFromNodeField.h │ │ │ ├── GetCachedObject.cpp │ │ │ ├── GetCachedObject.h │ │ │ ├── GetIntVecFromField.cpp │ │ │ ├── GetIntVecFromField.h │ │ │ ├── GetObjectName.cpp │ │ │ ├── GetObjectName.h │ │ │ ├── IndexedFaceSet.cpp │ │ │ ├── IndexedFaceSet.h │ │ │ ├── IsKeyPresent.h │ │ │ ├── MakeTransform.cpp │ │ │ ├── MakeTransform.h │ │ │ ├── PolyValue.cpp │ │ │ ├── PolyValue.h │ │ │ ├── PrependObjectToGroup.cpp │ │ │ ├── PrependObjectToGroup.h │ │ │ ├── SetGroupName.cpp │ │ │ ├── SetGroupName.h │ │ │ ├── SignedAngleBetweenVectors.cpp │ │ │ ├── SignedAngleBetweenVectors.h │ │ │ ├── UnBackslashEscape.cpp │ │ │ ├── UnBackslashEscape.h │ │ │ ├── VRMLSkipParser.cpp │ │ │ └── VRMLSkipParser.h │ │ ├── VRML 1 │ │ │ ├── GetIndexedMaterial.cpp │ │ │ ├── GetIndexedMaterial.h │ │ │ ├── NodeV1ToObject.cpp │ │ │ ├── NodeV1ToObject.h │ │ │ ├── ParseVRML1.cpp │ │ │ ├── ParseVRML1.h │ │ │ ├── SVRML1State.cpp │ │ │ ├── SVRML1State.h │ │ │ ├── VRML1 node handlers │ │ │ │ ├── ConeV1ToObject.cpp │ │ │ │ ├── ConeV1ToObject.h │ │ │ │ ├── Coordinate3V1ToState.cpp │ │ │ │ ├── Coordinate3V1ToState.h │ │ │ │ ├── CubeV1ToObject.cpp │ │ │ │ ├── CubeV1ToObject.h │ │ │ │ ├── CylinderV1ToObject.cpp │ │ │ │ ├── CylinderV1ToObject.h │ │ │ │ ├── IndexedFaceSetV1ToObject.cpp │ │ │ │ ├── IndexedFaceSetV1ToObject.h │ │ │ │ ├── IndexedLineSetV1ToObject.cpp │ │ │ │ ├── IndexedLineSetV1ToObject.h │ │ │ │ ├── MaterialBindingV1ToState.cpp │ │ │ │ ├── MaterialBindingV1ToState.h │ │ │ │ ├── MaterialV1ToState.cpp │ │ │ │ ├── MaterialV1ToState.h │ │ │ │ ├── MatrixTransformV1ToObject.cpp │ │ │ │ ├── MatrixTransformV1ToObject.h │ │ │ │ ├── NormalBindingV1ToState.cpp │ │ │ │ ├── NormalBindingV1ToState.h │ │ │ │ ├── NormalV1ToState.cpp │ │ │ │ ├── NormalV1ToState.h │ │ │ │ ├── PointSetV1ToObject.cpp │ │ │ │ ├── PointSetV1ToObject.h │ │ │ │ ├── RotationV1ToObject.cpp │ │ │ │ ├── RotationV1ToObject.h │ │ │ │ ├── ScaleV1ToObject.cpp │ │ │ │ ├── ScaleV1ToObject.h │ │ │ │ ├── SeparatorV1ToObject.cpp │ │ │ │ ├── SeparatorV1ToObject.h │ │ │ │ ├── ShapeHintsV1ToState.cpp │ │ │ │ ├── ShapeHintsV1ToState.h │ │ │ │ ├── SphereV1ToObject.cpp │ │ │ │ ├── SphereV1ToObject.h │ │ │ │ ├── Texture2V1ToObject.cpp │ │ │ │ ├── Texture2V1ToObject.h │ │ │ │ ├── TextureCoordinate2V1ToState.cpp │ │ │ │ ├── TextureCoordinate2V1ToState.h │ │ │ │ ├── TransformSeparatorV1ToObject.cpp │ │ │ │ ├── TransformSeparatorV1ToObject.h │ │ │ │ ├── TransformV1ToObject.cpp │ │ │ │ ├── TransformV1ToObject.h │ │ │ │ ├── TranslationV1ToObject.cpp │ │ │ │ └── TranslationV1ToObject.h │ │ │ └── VRML_1_constants.h │ │ ├── VRML 2 │ │ │ ├── NodeV2ToObject.cpp │ │ │ ├── NodeV2ToObject.h │ │ │ ├── ParseVRML.cpp │ │ │ ├── ParseVRML.h │ │ │ └── VRML2 node handlers │ │ │ │ ├── AppearanceV2ToObject.cpp │ │ │ │ ├── AppearanceV2ToObject.h │ │ │ │ ├── BoxV2ToObject.cpp │ │ │ │ ├── BoxV2ToObject.h │ │ │ │ ├── ChildrenV2ToObject.cpp │ │ │ │ ├── ChildrenV2ToObject.h │ │ │ │ ├── ConeV2ToObject.cpp │ │ │ │ ├── ConeV2ToObject.h │ │ │ │ ├── CylinderV2ToObject.cpp │ │ │ │ ├── CylinderV2ToObject.h │ │ │ │ ├── GroupV2ToObject.cpp │ │ │ │ ├── GroupV2ToObject.h │ │ │ │ ├── IndexedFaceSetV2ToObject.cpp │ │ │ │ ├── IndexedFaceSetV2ToObject.h │ │ │ │ ├── IndexedLineSetV2ToObject.cpp │ │ │ │ ├── IndexedLineSetV2ToObject.h │ │ │ │ ├── PointSetV2ToObject.cpp │ │ │ │ ├── PointSetV2ToObject.h │ │ │ │ ├── ShapeV2ToObject.cpp │ │ │ │ ├── ShapeV2ToObject.h │ │ │ │ ├── SphereV2ToObject.cpp │ │ │ │ ├── SphereV2ToObject.h │ │ │ │ ├── SwitchV2ToObject.cpp │ │ │ │ ├── SwitchV2ToObject.h │ │ │ │ ├── TransformV2ToObject.cpp │ │ │ │ └── TransformV2ToObject.h │ │ ├── VRML-reader-prefix.h │ │ ├── boost-user-config.h │ │ ├── main.cpp │ │ ├── quesa-methods.cpp │ │ └── quesa-methods.h │ │ └── read-me.html ├── Includes │ ├── Includes.html │ └── Quesa │ │ ├── CQ3GroupRange.h │ │ ├── CQ3ObjectRef.h │ │ ├── CQ3ObjectRef_Gets.h │ │ ├── CQ3WeakObjectRef.h │ │ ├── Q3GroupIterator.h │ │ ├── Quesa.h │ │ ├── QuesaCamera.h │ │ ├── QuesaCustomElements.h │ │ ├── QuesaDrawContext.h │ │ ├── QuesaErrors.h │ │ ├── QuesaExtension.h │ │ ├── QuesaGeometry.h │ │ ├── QuesaGroup.h │ │ ├── QuesaIO.h │ │ ├── QuesaLight.h │ │ ├── QuesaMath.h │ │ ├── QuesaMathOperators.hpp │ │ ├── QuesaMemory.h │ │ ├── QuesaPick.h │ │ ├── QuesaRenderer.h │ │ ├── QuesaSet.h │ │ ├── QuesaShader.h │ │ ├── QuesaStorage.h │ │ ├── QuesaString.h │ │ ├── QuesaStyle.h │ │ ├── QuesaTransform.h │ │ └── QuesaView.h ├── Libraries │ └── Mac │ │ └── Stub │ │ └── Quesa Gestalt └── Models │ └── Test │ ├── Geometry │ ├── Box.3dmf │ ├── Box_Default.3dmf │ ├── Box_Flipped.3dmf │ ├── Box_Skewed.3dmf │ ├── Box~GeoWarn0.3dmf │ ├── Box~GeoWarn1.3dmf │ ├── Box~GeoWarn2.3dmf │ ├── Cone.3dmf │ ├── Cone_CapAttributesA.3dmf │ ├── Cone_CapAttributesB.3dmf │ ├── Cone_CapsA.3dmf │ ├── Cone_CapsB.3dmf │ ├── Cone_Default.3dmf │ ├── Cone_Flipped.3dmf │ ├── Cone_PartialA.3dmf │ ├── Cone_PartialB.3dmf │ ├── Cone_PartialC.3dmf │ ├── Cone_PartialD.3dmf │ ├── Cone_PartialE.3dmf │ ├── Cone_PartialF.3dmf │ ├── Cone_PartialG.3dmf │ ├── Cone_Skewed.3dmf │ ├── Cone~GeoWarn0.3dmf │ ├── Cone~GeoWarn1A.3dmf │ ├── Cone~GeoWarn1B.3dmf │ ├── Cone~GeoWarn2A.3dmf │ ├── Cone~GeoWarn2B.3dmf │ ├── Cylinder.3dmf │ ├── Cylinder_CapsA.3dmf │ ├── Cylinder_CapsB.3dmf │ ├── Cylinder_CapsC.3dmf │ ├── Cylinder_CapsD.3dmf │ ├── Cylinder_Default.3dmf │ ├── Cylinder_Flipped.3dmf │ ├── Cylinder_PartialA.3dmf │ ├── Cylinder_PartialB.3dmf │ ├── Cylinder_PartialC.3dmf │ ├── Cylinder_PartialD.3dmf │ ├── Cylinder_PartialE.3dmf │ ├── Cylinder_PartialF.3dmf │ ├── Cylinder_PartialG.3dmf │ ├── Cylinder_Skewed.3dmf │ ├── Cylinder~GeoWarn0.3dmf │ ├── Cylinder~GeoWarn1A.3dmf │ ├── Cylinder~GeoWarn1B.3dmf │ ├── Cylinder~GeoWarn2A.3dmf │ ├── Cylinder~GeoWarn2B.3dmf │ ├── Disk.3dmf │ ├── Disk_Default.3dmf │ ├── Disk_PartialA.3dmf │ ├── Disk_PartialB.3dmf │ ├── Disk_PartialC.3dmf │ ├── Disk_PartialD.3dmf │ ├── Disk_PartialE.3dmf │ ├── Disk_PartialF.3dmf │ ├── Disk_Skewed.3dmf │ ├── Disk~GeoWarn0.3dmf │ ├── Disk~GeoWarn1.3dmf │ ├── Ellipse.3dmf │ ├── Ellipse_Default.3dmf │ ├── Ellipse_PartialA.3dmf │ ├── Ellipse_PartialB.3dmf │ ├── Ellipse_Skewed.3dmf │ ├── Ellipse~GeoWarn0.3dmf │ ├── Ellipse~GeoWarn1.3dmf │ ├── Ellipsoid.3dmf │ ├── Ellipsoid_Default.3dmf │ ├── Ellipsoid_Flipped.3dmf │ ├── Ellipsoid_PartialA.3dmf │ ├── Ellipsoid_PartialB.3dmf │ ├── Ellipsoid_PartialC.3dmf │ ├── Ellipsoid_PartialD.3dmf │ ├── Ellipsoid_PartialE.3dmf │ ├── Ellipsoid_PartialF.3dmf │ ├── Ellipsoid_PartialG.3dmf │ ├── Ellipsoid_Skewed.3dmf │ ├── Ellipsoid~GeoWarn0.3dmf │ ├── Ellipsoid~GeoWarn1A.3dmf │ ├── Ellipsoid~GeoWarn1B.3dmf │ ├── Ellipsoid~GeoWarn2A.3dmf │ ├── Ellipsoid~GeoWarn2B.3dmf │ ├── GeneralPolygon.3dmf │ ├── GeneralPolygon_ComplexAa.3dmf │ ├── GeneralPolygon_ComplexAa0.3dmf │ ├── GeneralPolygon_ComplexAa1.3dmf │ ├── GeneralPolygon_ComplexAa2.3dmf │ ├── GeneralPolygon_ComplexAb.3dmf │ ├── GeneralPolygon_ComplexAc.3dmf │ ├── GeneralPolygon_ComplexBa.3dmf │ ├── GeneralPolygon_ComplexBb.3dmf │ ├── GeneralPolygon_ComplexCa.3dmf │ ├── GeneralPolygon_ComplexCb.3dmf │ ├── GeneralPolygon_ComplexDa.3dmf │ ├── GeneralPolygon_ComplexDb.3dmf │ ├── GeneralPolygon_ComplexE.3dmf │ ├── GeneralPolygon_ComplexFa.3dmf │ ├── GeneralPolygon_ComplexFb.3dmf │ ├── GeneralPolygon_ComplexG.3dmf │ ├── GeneralPolygon_ComplexH.3dmf │ ├── GeneralPolygon_Concave.3dmf │ ├── GeneralPolygon_Concave0.3dmf │ ├── GeneralPolygon_Duplicate.3dmf │ ├── GeneralPolygon_Merge.3dmf │ ├── GeneralPolygon_Nonplanar.3dmf │ ├── GeneralPolygon_Star.3dmf │ ├── GeneralPolygon_Star0.3dmf │ ├── GeneralPolygon_Star1.3dmf │ ├── GeneralPolygon~GeoWarn0.3dmf │ ├── GeneralPolygon~GeoWarn1.3dmf │ ├── GeneralPolygon~GeoWarn2.3dmf │ ├── GeneralPolygon~TopoErr0.3dmf │ ├── GeneralPolygon~TopoErr1.3dmf │ ├── GeneralPolygon~TopoErr2.3dmf │ ├── Line.3dmf │ ├── Line~GeoWarn0.3dmf │ ├── Marker.3dmf │ ├── Mesh.3dmf │ ├── Mesh_ComplexAa.3dmf │ ├── Mesh_ComplexAb.3dmf │ ├── Mesh_ComplexAc.3dmf │ ├── Mesh_ComplexBa.3dmf │ ├── Mesh_ComplexBb.3dmf │ ├── Mesh_ComplexCa.3dmf │ ├── Mesh_ComplexCb.3dmf │ ├── Mesh_ComplexDa.3dmf │ ├── Mesh_ComplexDb.3dmf │ ├── Mesh_ComplexE.3dmf │ ├── Mesh_ComplexFa.3dmf │ ├── Mesh_ComplexFb.3dmf │ ├── Mesh_ComplexG.3dmf │ ├── Mesh_ComplexH.3dmf │ ├── Mesh_Concave.3dmf │ ├── Mesh_Duplicate.3dmf │ ├── Mesh_Merge.3dmf │ ├── Mesh_Nonplanar.3dmf │ ├── Mesh_Star.3dmf │ ├── Mesh_TriGrid.3dmf │ ├── Mesh_Unoriented.3dmf │ ├── Mesh~Cross.3dmf │ ├── Mesh~GeoWarn0.3dmf │ ├── Mesh~GeoWarn1.3dmf │ ├── Mesh~GeoWarn2.3dmf │ ├── Mesh~TopoErr0.3dmf │ ├── Mesh~TopoErr1.3dmf │ ├── Mesh~TopoErr2.3dmf │ ├── NURBCurve.3dmf │ ├── NURBCurve_Line.3dmf │ ├── NURBCurve_PolyLine.3dmf │ ├── NURBPatch.3dmf │ ├── PixmapMarker.3dmf │ ├── Point.3dmf │ ├── PolyLine.3dmf │ ├── PolyLine~GeoWarn0.3dmf │ ├── PolyLine~TopoErr0.3dmf │ ├── Polygon.3dmf │ ├── Polyline-attributes.3dmf │ ├── TriMesh-face-colors-flat.3dmf │ ├── TriMesh-face-colors-normals.3dmf │ ├── TriMesh-face-colors.3dmf │ ├── TriMesh-fancy.3dmf │ ├── TriMesh-no-normals.3dmf │ ├── TriMesh-simple.3dmf │ ├── TriMesh-transparent.3dmf │ └── Triangle.3dmf │ ├── Misc │ ├── Quesa Logo as text.3dmf │ ├── flipping-transform-shadow-test.3dmf │ └── references.3dmf │ ├── Shaders │ ├── texture-interference-2.3dmf │ ├── texture-interference.3dmf │ ├── texture-wrapping.3dmf │ ├── tx-16bit-565-big.3dmf │ ├── tx-16bit-565-little.3dmf │ ├── tx-16bit-big.3dmf │ ├── tx-16bit-little.3dmf │ ├── tx-24bit-big.3dmf │ ├── tx-24bit-little.3dmf │ ├── tx-32bit-big.3dmf │ ├── tx-32bit-little.3dmf │ ├── tx-argb16-big.3dmf │ └── uv-transform.3dmf │ └── Styles │ ├── DepthRangeStyle.3dmf │ ├── WriteSwitchStyle.3dmf │ ├── fill-style.3dmf │ ├── highlight-texture.3dmf │ └── highlight.3dmf └── icon.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/.hgignore -------------------------------------------------------------------------------- /Development/Projects/Mac/Quesa Custom Elements.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/Quesa Custom Elements.mcp -------------------------------------------------------------------------------- /Development/Projects/Mac/Quesa Gestalt.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/Quesa Gestalt.mcp -------------------------------------------------------------------------------- /Development/Projects/Mac/Quesa Viewer.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/Quesa Viewer.mcp -------------------------------------------------------------------------------- /Development/Projects/Mac/Quesa Viewer.mcp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/Quesa Viewer.mcp.exp -------------------------------------------------------------------------------- /Development/Projects/Mac/Quesa.mcp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/Quesa.mcp.xml -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaCarbonDebug.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaCarbonDebug.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaCarbonProfile.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaCarbonProfile.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaCarbonRelease.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaCarbonRelease.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaClassicDebug.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaClassicDebug.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaClassicProfile.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaClassicProfile.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaClassicRelease.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaClassicRelease.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaStaticDebug.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaStaticDebug.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaStaticProfile.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaStaticProfile.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/QuesaStaticRelease.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/QuesaStaticRelease.pch -------------------------------------------------------------------------------- /Development/Projects/Mac/quesa-export-gcc3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Mac/quesa-export-gcc3.txt -------------------------------------------------------------------------------- /Development/Projects/Unix/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/AUTHORS -------------------------------------------------------------------------------- /Development/Projects/Unix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/COPYING -------------------------------------------------------------------------------- /Development/Projects/Unix/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/ChangeLog -------------------------------------------------------------------------------- /Development/Projects/Unix/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/INSTALL -------------------------------------------------------------------------------- /Development/Projects/Unix/INSTALL.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/INSTALL.examples -------------------------------------------------------------------------------- /Development/Projects/Unix/INSTALL.fullDist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/INSTALL.fullDist -------------------------------------------------------------------------------- /Development/Projects/Unix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/Makefile.am -------------------------------------------------------------------------------- /Development/Projects/Unix/Makefile.am.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/Makefile.am.examples -------------------------------------------------------------------------------- /Development/Projects/Unix/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/NEWS -------------------------------------------------------------------------------- /Development/Projects/Unix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/README -------------------------------------------------------------------------------- /Development/Projects/Unix/Scripts/buildUnix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/Scripts/buildUnix.sh -------------------------------------------------------------------------------- /Development/Projects/Unix/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/acinclude.m4 -------------------------------------------------------------------------------- /Development/Projects/Unix/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/configure.in -------------------------------------------------------------------------------- /Development/Projects/Unix/configure.in.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/configure.in.examples -------------------------------------------------------------------------------- /Development/Projects/Unix/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Unix/ltmain.sh -------------------------------------------------------------------------------- /Development/Projects/Windows/NoOpenGL.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Windows/NoOpenGL.props -------------------------------------------------------------------------------- /Development/Projects/Windows/Quesa-NoOpenGL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Windows/Quesa-NoOpenGL.vcxproj -------------------------------------------------------------------------------- /Development/Projects/Windows/Quesa.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Windows/Quesa.sln -------------------------------------------------------------------------------- /Development/Projects/Windows/Quesa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Windows/Quesa.vcxproj -------------------------------------------------------------------------------- /Development/Projects/Windows/Quesa.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Windows/Quesa.vcxproj.filters -------------------------------------------------------------------------------- /Development/Projects/Windows/QuesaHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Windows/QuesaHeaders.h -------------------------------------------------------------------------------- /Development/Projects/Windows/QuesaHeadersDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Projects/Windows/QuesaHeadersDebug.h -------------------------------------------------------------------------------- /Development/Scripts/BuildRelease/BuildRelease.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/BuildRelease/BuildRelease.pl -------------------------------------------------------------------------------- /Development/Scripts/BuildRelease/WinBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/BuildRelease/WinBuild.bat -------------------------------------------------------------------------------- /Development/Scripts/HeaderDoc/DoQuesaDocs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/HeaderDoc/DoQuesaDocs.pl -------------------------------------------------------------------------------- /Development/Scripts/HeaderDoc/MakeDocsScript.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /Development/Scripts/HeaderDoc/gatherHeaderDoc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/HeaderDoc/gatherHeaderDoc.pl -------------------------------------------------------------------------------- /Development/Scripts/HeaderDoc/headerDoc2HTML.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/HeaderDoc/headerDoc2HTML.config -------------------------------------------------------------------------------- /Development/Scripts/HeaderDoc/headerDoc2HTML.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/HeaderDoc/headerDoc2HTML.pl -------------------------------------------------------------------------------- /Development/Scripts/Headeriser/Headeriser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/Headeriser/Headeriser.pl -------------------------------------------------------------------------------- /Development/Scripts/Scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/Scripts.html -------------------------------------------------------------------------------- /Development/Scripts/Skeleton/Skeleton.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/Skeleton/Skeleton.pl -------------------------------------------------------------------------------- /Development/Scripts/Status/Status.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/Status/Status.pl -------------------------------------------------------------------------------- /Development/Scripts/Status/status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Scripts/Status/status.txt -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3Geometry.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3Geometry.h -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryBox.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryBox.h -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryCone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryCone.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryCone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryCone.h -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryDisk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryDisk.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryDisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryDisk.h -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryLine.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryLine.h -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryMarker.h -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryMesh.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryMesh.h -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryPoint.h -------------------------------------------------------------------------------- /Development/Source/Core/Geometry/E3GeometryTorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Geometry/E3GeometryTorus.h -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DCamera.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DCustomElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DCustomElements.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DDrawContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DDrawContext.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DErrors.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DExtension.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DGeometry.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DGroup.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DIO.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DLight.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DMain.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DMath.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DMemory.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DPick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DPick.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DRenderer.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DSet.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DShader.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DStorage.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DString.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DStyle.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DTransform.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Glue/QD3DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Glue/QD3DView.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3ArrayOrList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3ArrayOrList.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3ArrayOrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3ArrayOrList.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3ClassTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3ClassTree.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3ClassTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3ClassTree.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Compatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Compatibility.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Compatibility.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Debug.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3ErrorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3ErrorManager.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3ErrorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3ErrorManager.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3FastArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3FastArray.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Globals.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Globals.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3HashTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3HashTable.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3HashTable.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Pool.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Pool.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Prefix.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3SafeCompare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3SafeCompare.hpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3StackCrawl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3StackCrawl.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3System.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3System.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Tessellate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Tessellate.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Tessellate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Tessellate.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Utils.cpp -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Utils.h -------------------------------------------------------------------------------- /Development/Source/Core/Support/E3Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/Support/E3Version.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Camera.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Camera.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3CustomElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3CustomElements.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3CustomElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3CustomElements.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3DrawContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3DrawContext.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3DrawContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3DrawContext.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Errors.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Errors.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Extension.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Extension.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Group.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Group.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3IO.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3IO.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3IOData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3IOData.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3IOData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3IOData.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Light.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Light.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Main.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Main.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Math.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Math.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Math_Intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Math_Intersect.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Math_Intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Math_Intersect.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Memory.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Memory.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Pick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Pick.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Pick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Pick.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Renderer.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Renderer.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Set.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Set.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Shader.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Shader.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Storage.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Storage.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3String.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3String.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Style.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Style.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Texture.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Texture.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Transform.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3Transform.h -------------------------------------------------------------------------------- /Development/Source/Core/System/E3View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3View.cpp -------------------------------------------------------------------------------- /Development/Source/Core/System/E3View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Core/System/E3View.h -------------------------------------------------------------------------------- /Development/Source/FileFormats/E3IOFileFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/FileFormats/E3IOFileFormat.cpp -------------------------------------------------------------------------------- /Development/Source/FileFormats/E3IOFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/FileFormats/E3IOFileFormat.h -------------------------------------------------------------------------------- /Development/Source/Platform/Cocoa/E3CocoaDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Cocoa/E3CocoaDebug.cpp -------------------------------------------------------------------------------- /Development/Source/Platform/Cocoa/E3CocoaPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Cocoa/E3CocoaPrefix.h -------------------------------------------------------------------------------- /Development/Source/Platform/Cocoa/E3CocoaSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Cocoa/E3CocoaSystem.cpp -------------------------------------------------------------------------------- /Development/Source/Platform/Cocoa/E3MacLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Cocoa/E3MacLog.h -------------------------------------------------------------------------------- /Development/Source/Platform/Cocoa/E3MacLog.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Cocoa/E3MacLog.mm -------------------------------------------------------------------------------- /Development/Source/Platform/Mac/E3MacDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Mac/E3MacDebug.cpp -------------------------------------------------------------------------------- /Development/Source/Platform/Mac/E3MacMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Mac/E3MacMemory.cpp -------------------------------------------------------------------------------- /Development/Source/Platform/Mac/E3MacMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Mac/E3MacMemory.h -------------------------------------------------------------------------------- /Development/Source/Platform/Mac/E3MacSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Mac/E3MacSystem.cpp -------------------------------------------------------------------------------- /Development/Source/Platform/Unix/E3UnixDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Unix/E3UnixDebug.cpp -------------------------------------------------------------------------------- /Development/Source/Platform/Unix/E3UnixPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Unix/E3UnixPrefix.h -------------------------------------------------------------------------------- /Development/Source/Platform/Unix/E3UnixStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Unix/E3UnixStorage.cpp -------------------------------------------------------------------------------- /Development/Source/Platform/Unix/E3UnixSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Platform/Unix/E3UnixSystem.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/Common/GLCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Common/GLCamera.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/Common/GLCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Common/GLCamera.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Common/GLDrawContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Common/GLDrawContext.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Common/GLGPUSharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Common/GLGPUSharing.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Common/GLPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Common/GLPrefix.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Common/GLUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Common/GLUtils.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/Common/GLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Common/GLUtils.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Common/GLVBOManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Common/GLVBOManager.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Generic/GNGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Generic/GNGeometry.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/Generic/GNGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Generic/GNGeometry.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Generic/GNPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Generic/GNPrefix.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Generic/GNRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Generic/GNRegister.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/Generic/GNRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Generic/GNRegister.h -------------------------------------------------------------------------------- /Development/Source/Renderers/Generic/GNRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Generic/GNRenderer.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/Generic/GNRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/Generic/GNRenderer.h -------------------------------------------------------------------------------- /Development/Source/Renderers/MakeStrip/MakeStrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/MakeStrip/MakeStrip.h -------------------------------------------------------------------------------- /Development/Source/Renderers/MakeStrip/StripMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/MakeStrip/StripMaker.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOGLSLShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOGLSLShaders.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOGeometry.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOLights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOLights.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOLights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOLights.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOMatrix.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOMatrix.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOPrefix.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QORegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QORegister.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QORegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QORegister.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QORenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QORenderer.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QORenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QORenderer.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOStatics.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOStatics.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOTexture.cpp -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOTexture.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOTransBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOTransBuffer.h -------------------------------------------------------------------------------- /Development/Source/Renderers/OpenGL/QOUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Development/Source/Renderers/OpenGL/QOUpdate.cpp -------------------------------------------------------------------------------- /Documentation/developer/apiref/MasterTOC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/MasterTOC.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/Quesa/Quesa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/Quesa/Quesa.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/Quesa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/Quesa/index.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/Quesa/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/Quesa/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaCamera/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaCamera/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaErrors/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaErrors/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaGroup/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaGroup/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaIO/QuesaIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaIO/QuesaIO.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaIO/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaIO/index.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaIO/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaIO/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaLight/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaLight/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaMath/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaMath/index.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaMath/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaMath/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaMemory/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaMemory/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaPick/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaPick/index.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaPick/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaPick/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaSet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaSet/index.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaSet/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaSet/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaShader/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaShader/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaString/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaString/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaStyle/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaStyle/toc.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaView/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaView/index.html -------------------------------------------------------------------------------- /Documentation/developer/apiref/QuesaView/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/apiref/QuesaView/toc.html -------------------------------------------------------------------------------- /Documentation/developer/book/01_intro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/01_intro/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/03_getstart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/03_getstart/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/04_view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/04_view/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/06_camera/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/06_camera/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/07_light/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/07_light/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/08_geometry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/08_geometry/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/09_scenes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/09_scenes/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/11_loadsave/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/11_loadsave/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/14_viewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/14_viewer/index.html -------------------------------------------------------------------------------- /Documentation/developer/book/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/css/style.css -------------------------------------------------------------------------------- /Documentation/developer/book/images/quesa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/images/quesa.jpg -------------------------------------------------------------------------------- /Documentation/developer/book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/book/index.html -------------------------------------------------------------------------------- /Documentation/developer/bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/bugs.html -------------------------------------------------------------------------------- /Documentation/developer/cvs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/cvs.html -------------------------------------------------------------------------------- /Documentation/developer/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/developer/todo.html -------------------------------------------------------------------------------- /Documentation/images/dc_icon-60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/images/dc_icon-60.gif -------------------------------------------------------------------------------- /Documentation/images/logo_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/images/logo_gray.gif -------------------------------------------------------------------------------- /Documentation/images/logo_text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/images/logo_text.jpg -------------------------------------------------------------------------------- /Documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/index.html -------------------------------------------------------------------------------- /Documentation/info/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/download.html -------------------------------------------------------------------------------- /Documentation/info/files/quesa.cvs.sit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/files/quesa.cvs.sit -------------------------------------------------------------------------------- /Documentation/info/images/linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/images/linux.jpg -------------------------------------------------------------------------------- /Documentation/info/images/macos8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/images/macos8.jpg -------------------------------------------------------------------------------- /Documentation/info/images/macosx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/images/macosx.jpg -------------------------------------------------------------------------------- /Documentation/info/images/windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/images/windows.jpg -------------------------------------------------------------------------------- /Documentation/info/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/list.html -------------------------------------------------------------------------------- /Documentation/info/list_archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/list_archive.html -------------------------------------------------------------------------------- /Documentation/info/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/screenshots.html -------------------------------------------------------------------------------- /Documentation/info/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/info/status.html -------------------------------------------------------------------------------- /Documentation/other/contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/contributors.html -------------------------------------------------------------------------------- /Documentation/other/files/logo_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/files/logo_large.jpg -------------------------------------------------------------------------------- /Documentation/other/files/logo_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/files/logo_small.jpg -------------------------------------------------------------------------------- /Documentation/other/files/quesa.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/files/quesa.3dmf -------------------------------------------------------------------------------- /Documentation/other/images/3dworld.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/3dworld.gif -------------------------------------------------------------------------------- /Documentation/other/images/FrameForge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/FrameForge.gif -------------------------------------------------------------------------------- /Documentation/other/images/Mobilia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/Mobilia.png -------------------------------------------------------------------------------- /Documentation/other/images/cvs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/cvs.gif -------------------------------------------------------------------------------- /Documentation/other/images/designworkshop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/designworkshop.gif -------------------------------------------------------------------------------- /Documentation/other/images/frameforge-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/frameforge-icon.png -------------------------------------------------------------------------------- /Documentation/other/images/geo3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/geo3d.gif -------------------------------------------------------------------------------- /Documentation/other/images/logo_badge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/logo_badge.gif -------------------------------------------------------------------------------- /Documentation/other/images/macdev_wr_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/macdev_wr_small.gif -------------------------------------------------------------------------------- /Documentation/other/images/meshwork.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/meshwork.gif -------------------------------------------------------------------------------- /Documentation/other/images/mpa_ringlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/mpa_ringlogo.gif -------------------------------------------------------------------------------- /Documentation/other/images/settingsun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/settingsun.gif -------------------------------------------------------------------------------- /Documentation/other/images/source.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/source.gif -------------------------------------------------------------------------------- /Documentation/other/images/thor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/thor.gif -------------------------------------------------------------------------------- /Documentation/other/images/vasci.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/images/vasci.gif -------------------------------------------------------------------------------- /Documentation/other/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/links.html -------------------------------------------------------------------------------- /Documentation/other/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/other/logo.html -------------------------------------------------------------------------------- /Documentation/reference/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/build.html -------------------------------------------------------------------------------- /Documentation/reference/carbon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/carbon.html -------------------------------------------------------------------------------- /Documentation/reference/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/docs.html -------------------------------------------------------------------------------- /Documentation/reference/images/Ivroyupsmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/images/Ivroyupsmall.gif -------------------------------------------------------------------------------- /Documentation/reference/images/Modified.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/images/Modified.gif -------------------------------------------------------------------------------- /Documentation/reference/images/Quesa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/images/Quesa.gif -------------------------------------------------------------------------------- /Documentation/reference/images/Unsupported.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/images/Unsupported.gif -------------------------------------------------------------------------------- /Documentation/reference/lgpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/lgpl.html -------------------------------------------------------------------------------- /Documentation/reference/licence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/reference/licence.html -------------------------------------------------------------------------------- /Documentation/site-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/Documentation/site-styles.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/README.md -------------------------------------------------------------------------------- /SDK/Examples/Background Test/Background Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Background Test/Background Test.c -------------------------------------------------------------------------------- /SDK/Examples/Background Test/Background Test.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Background Test/Background Test.mcp -------------------------------------------------------------------------------- /SDK/Examples/Background Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Background Test/Info.plist -------------------------------------------------------------------------------- /SDK/Examples/Camera Test/Camera Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Camera Test/Camera Test.c -------------------------------------------------------------------------------- /SDK/Examples/Camera Test/Camera Test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Camera Test/Camera Test.dsp -------------------------------------------------------------------------------- /SDK/Examples/Camera Test/Camera Test.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Camera Test/Camera Test.mcp -------------------------------------------------------------------------------- /SDK/Examples/Dump Group/Dump Group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Dump Group/Dump Group.c -------------------------------------------------------------------------------- /SDK/Examples/Dump Group/Dump Group.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Dump Group/Dump Group.dsp -------------------------------------------------------------------------------- /SDK/Examples/Dump Group/Dump Group.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Dump Group/Dump Group.mcp -------------------------------------------------------------------------------- /SDK/Examples/FilamentViewer/BakeMaterialRule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/FilamentViewer/BakeMaterialRule.sh -------------------------------------------------------------------------------- /SDK/Examples/FilamentViewer/FilamentViewer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/FilamentViewer/FilamentViewer/main.m -------------------------------------------------------------------------------- /SDK/Examples/FilamentViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/FilamentViewer/README.md -------------------------------------------------------------------------------- /SDK/Examples/FilamentViewer/proj.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/FilamentViewer/proj.xcconfig -------------------------------------------------------------------------------- /SDK/Examples/FilamentViewer/targ_Metal.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/FilamentViewer/targ_Metal.xcconfig -------------------------------------------------------------------------------- /SDK/Examples/FilamentViewer/targ_OpenGL.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/FilamentViewer/targ_OpenGL.xcconfig -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/Geom Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/Geom Test.cpp -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/Geom Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/Geom Test.sln -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/Geom Test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/Geom Test.vcproj -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/Geom Test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/Geom Test.vcxproj -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/Geom Test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/Geom Test.vcxproj.filters -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/Geom Test_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/Geom Test_Prefix.pch -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/GeomTest-VS.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/GeomTest-VS.props -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/GeomTest.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/GeomTest.icns -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/GeomTest.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/GeomTest.xcconfig -------------------------------------------------------------------------------- /SDK/Examples/Geom Test/XCode-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Geom Test/XCode-Info.plist -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/HIFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/HIFramework.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TApplication.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TCarbonEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TCarbonEvent.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TNib.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TNib.cp -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TNib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TNib.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TObject.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TObject.cp -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TObject.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TRect.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TRect.cp -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TRect.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TView.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TView.cp -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TView.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TWindow.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TWindow.cp -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIFramework/TWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIFramework/TWindow.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIQuesaView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIQuesaView.cpp -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIQuesaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIQuesaView.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIQuesaViewProj.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIQuesaViewProj.xcconfig -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIQuesaViewTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIQuesaViewTarget.xcconfig -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/HIQuesaView_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/HIQuesaView_Prefix.pch -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/Info.plist -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/MainWindow.cpp -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/MainWindow.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/MakeTabsSwitchPanels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/MakeTabsSwitchPanels.cpp -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/MakeTabsSwitchPanels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/MakeTabsSwitchPanels.h -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/READ ME.txt -------------------------------------------------------------------------------- /SDK/Examples/HIQuesaView/main.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/HIQuesaView/main.cp -------------------------------------------------------------------------------- /SDK/Examples/Import Test/Import Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Import Test/Import Test.c -------------------------------------------------------------------------------- /SDK/Examples/Import Test/Import Test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Import Test/Import Test.dsp -------------------------------------------------------------------------------- /SDK/Examples/Import Test/Import Test.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Import Test/Import Test.mcp -------------------------------------------------------------------------------- /SDK/Examples/Light Test/Light Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Light Test/Light Test.c -------------------------------------------------------------------------------- /SDK/Examples/Light Test/Light Test.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Light Test/Light Test.mcp -------------------------------------------------------------------------------- /SDK/Examples/Light Test/Light test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Light Test/Light test.dsp -------------------------------------------------------------------------------- /SDK/Examples/Qut/Mac/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Mac/MainMenu.xib -------------------------------------------------------------------------------- /SDK/Examples/Qut/Mac/Qut Prefix Carbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Mac/Qut Prefix Carbon.h -------------------------------------------------------------------------------- /SDK/Examples/Qut/Mac/QutMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Mac/QutMac.h -------------------------------------------------------------------------------- /SDK/Examples/Qut/Mac/QutMac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Mac/QutMac.mm -------------------------------------------------------------------------------- /SDK/Examples/Qut/Qut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Qut.cpp -------------------------------------------------------------------------------- /SDK/Examples/Qut/Qut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Qut.h -------------------------------------------------------------------------------- /SDK/Examples/Qut/QutInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/QutInternal.h -------------------------------------------------------------------------------- /SDK/Examples/Qut/QutTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/QutTexture.cpp -------------------------------------------------------------------------------- /SDK/Examples/Qut/QutTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/QutTexture.h -------------------------------------------------------------------------------- /SDK/Examples/Qut/Unix/QutUnix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Unix/QutUnix.c -------------------------------------------------------------------------------- /SDK/Examples/Qut/Windows/Qut.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Windows/Qut.rc -------------------------------------------------------------------------------- /SDK/Examples/Qut/Windows/QutWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Windows/QutWindows.cpp -------------------------------------------------------------------------------- /SDK/Examples/Qut/Windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Qut/Windows/resource.h -------------------------------------------------------------------------------- /SDK/Examples/Shader Test/Shader Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Shader Test/Shader Test.c -------------------------------------------------------------------------------- /SDK/Examples/Shader Test/Shader Test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Shader Test/Shader Test.dsp -------------------------------------------------------------------------------- /SDK/Examples/Shader Test/Shader Test.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Shader Test/Shader Test.mcp -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/DemoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/DemoController.h -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/DemoController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/DemoController.mm -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/DemoGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/DemoGeometry.h -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/DemoGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/DemoGeometry.m -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/Info-Quesa3DView.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/Info-Quesa3DView.plist -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/Quesa3DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/Quesa3DView.h -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/Quesa3DView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/Quesa3DView.m -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/QuesaCocoaUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/QuesaCocoaUtil.h -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/QuesaCocoaUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/QuesaCocoaUtil.m -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/main.m -------------------------------------------------------------------------------- /SDK/Examples/StereoDemo/project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/StereoDemo/project.xcconfig -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/1.png -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/1.tga -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/2.png -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/2.tga -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/3.png -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/3.tga -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/4.png -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/4.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/4.tga -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/5.png -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/5.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/5.tga -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/6.png -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/6.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/6.tga -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/Blue Square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/Blue Square.jpg -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/Golf Balls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/Golf Balls.jpg -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/Quesa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/Quesa.jpg -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/Quesa.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/Quesa.tga -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Images/US_$5_obverse.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Images/US_$5_obverse.tga -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DMF/F15.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DMF/F15.3dmf -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DMF/F18.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DMF/F18.3dmf -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DMF/Line.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DMF/Line.3dmf -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DMF/Marker.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DMF/Marker.3dmf -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DMF/PixMap.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DMF/PixMap.3dmf -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DMF/Point.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DMF/Point.3dmf -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DMF/nurb.3DMF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DMF/nurb.3DMF -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DS/tie-in.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DS/tie-in.3ds -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DS/tiefight.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DS/tiefight.3ds -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DS/xwing.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DS/xwing.3ds -------------------------------------------------------------------------------- /SDK/Examples/Support Files/Models/3DS/ywing.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Support Files/Models/3DS/ywing.3ds -------------------------------------------------------------------------------- /SDK/Examples/Viewer Test/Viewer Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Viewer Test/Viewer Test.c -------------------------------------------------------------------------------- /SDK/Examples/Viewer Test/Viewer Test.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Examples/Viewer Test/Viewer Test.mcp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/COPYING -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Resources/Info.plist -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Resources/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Resources/Resources.rc -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Resources/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Resources/version.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Source/C3DSReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Source/C3DSReader.cpp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Source/C3DSReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Source/C3DSReader.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Source/C3DSWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Source/C3DSWriter.cpp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Source/C3DSWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Source/C3DSWriter.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Source/main.cpp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Source/quesa-methods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Source/quesa-methods.cpp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/Source/quesa-methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/Source/quesa-methods.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/AUTHORS: -------------------------------------------------------------------------------- 1 | J.E. Hoffmann 2 | -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/COPYING -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/ChangeLog -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/INSTALL -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/Makefile.am -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/Makefile.in -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/README -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/TODO: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/acconfig.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/aclocal.m4 -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/config.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/config.h.in -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/configure -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/configure.in -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/examples/glstub.h.in: -------------------------------------------------------------------------------- 1 | #include <@GLUT_HEADER_DIR@/glut.h> 2 | -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/examples/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/examples/player.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/install-sh -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds-config.1 -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds-config.in -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds.m4 -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds.spec -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/camera.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/camera.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/chunk.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/chunk.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/ease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/ease.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/ease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/ease.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/file.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/file.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/float.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/float.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/io.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/io.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/light.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/light.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/material.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/material.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/material.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/matrix.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/matrix.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/mesh.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/mesh.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/node.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/node.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/quat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/quat.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/quat.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/shadow.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/shadow.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/tcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/tcb.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/tcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/tcb.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/tracks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/tracks.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/tracks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/tracks.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/types.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/types.txt -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/vector.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/vector.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/viewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/viewport.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/lib3ds/viewport.h -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/ltmain.sh -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/missing -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/mkinstalldirs -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/msvc/3ds2m.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/msvc/3ds2m.dsp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/msvc/3ds2rib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/msvc/3ds2rib.dsp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/msvc/3dsdump.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/msvc/3dsdump.dsp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/msvc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/msvc/Makefile.am -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/msvc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/msvc/Makefile.in -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/msvc/all.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/msvc/all.dsp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/msvc/lib3ds.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/msvc/lib3ds.dsw -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/msvc/player.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/msvc/player.dsp -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/tools/3ds2m.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/tools/3ds2m.1 -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/tools/3ds2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/tools/3ds2m.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/tools/3dsdump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/tools/3dsdump.1 -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/tools/3dsdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/tools/3dsdump.c -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/tools/Makefile.am -------------------------------------------------------------------------------- /SDK/Extras/3DS-FileSupport/lib3ds/tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3DS-FileSupport/lib3ds/tools/Makefile.in -------------------------------------------------------------------------------- /SDK/Extras/3dsReader/3dsReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3dsReader/3dsReader.c -------------------------------------------------------------------------------- /SDK/Extras/3dsReader/3dsReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3dsReader/3dsReader.h -------------------------------------------------------------------------------- /SDK/Extras/3dsReader/3dsReader.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3dsReader/3dsReader.mcp -------------------------------------------------------------------------------- /SDK/Extras/3dsReader/3dsReader.mcp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3dsReader/3dsReader.mcp.exp -------------------------------------------------------------------------------- /SDK/Extras/3dsReader/3dsreader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3dsReader/3dsreader.sln -------------------------------------------------------------------------------- /SDK/Extras/3dsReader/3dsreader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/3dsReader/3dsreader.vcproj -------------------------------------------------------------------------------- /SDK/Extras/Binify3DMF/Binify-proj.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Binify3DMF/Binify-proj.xcconfig -------------------------------------------------------------------------------- /SDK/Extras/Binify3DMF/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Binify3DMF/Readme.txt -------------------------------------------------------------------------------- /SDK/Extras/Binify3DMF/Source/Read3DMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Binify3DMF/Source/Read3DMF.cpp -------------------------------------------------------------------------------- /SDK/Extras/Binify3DMF/Source/Read3DMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Binify3DMF/Source/Read3DMF.h -------------------------------------------------------------------------------- /SDK/Extras/Binify3DMF/Source/Write3DMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Binify3DMF/Source/Write3DMF.cpp -------------------------------------------------------------------------------- /SDK/Extras/Binify3DMF/Source/Write3DMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Binify3DMF/Source/Write3DMF.h -------------------------------------------------------------------------------- /SDK/Extras/Binify3DMF/Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Binify3DMF/Source/main.cpp -------------------------------------------------------------------------------- /SDK/Extras/Cocoa Example/Quesa3DView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Cocoa Example/Quesa3DView/AppDelegate.h -------------------------------------------------------------------------------- /SDK/Extras/Cocoa Example/Quesa3DView/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Cocoa Example/Quesa3DView/AppDelegate.mm -------------------------------------------------------------------------------- /SDK/Extras/Cocoa Example/Quesa3DView/DemoGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Cocoa Example/Quesa3DView/DemoGeometry.h -------------------------------------------------------------------------------- /SDK/Extras/Cocoa Example/Quesa3DView/Quesa3DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Cocoa Example/Quesa3DView/Quesa3DView.h -------------------------------------------------------------------------------- /SDK/Extras/Cocoa Example/Quesa3DView/Quesa3DView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Cocoa Example/Quesa3DView/Quesa3DView.mm -------------------------------------------------------------------------------- /SDK/Extras/Cocoa Example/Quesa3DView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Cocoa Example/Quesa3DView/main.m -------------------------------------------------------------------------------- /SDK/Extras/Math Test/Math Test.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Math Test/Math Test.cp -------------------------------------------------------------------------------- /SDK/Extras/Math Test/Math Test.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Math Test/Math Test.mcp -------------------------------------------------------------------------------- /SDK/Extras/Math Test/QD3D_1.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Math Test/QD3D_1.6.txt -------------------------------------------------------------------------------- /SDK/Extras/OBJ.Reader/OBJ.Reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/OBJ.Reader/OBJ.Reader.c -------------------------------------------------------------------------------- /SDK/Extras/OBJ.Reader/OBJ.Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/OBJ.Reader/OBJ.Reader.h -------------------------------------------------------------------------------- /SDK/Extras/OBJ.Reader/OBJ.Reader.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/OBJ.Reader/OBJ.Reader.mcp -------------------------------------------------------------------------------- /SDK/Extras/OBJ.Reader/OBJ.Reader.mcp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/OBJ.Reader/OBJ.Reader.mcp.exp -------------------------------------------------------------------------------- /SDK/Extras/OBJ.Reader/WavefrontOBJ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/OBJ.Reader/WavefrontOBJ.c -------------------------------------------------------------------------------- /SDK/Extras/OBJ.Reader/wavefrontobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/OBJ.Reader/wavefrontobj.h -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Notes/Credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Notes/Credits -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Notes/Objectives & Plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Notes/Objectives & Plan -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Notes/Queeg Progress Log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Notes/Queeg Progress Log -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Demo 1/About the Demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Demo 1/About the Demo -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Demo 1/Model Source/map.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Demo 1/Model Source/map.mesh -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Demo 1/Queeg Demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Demo 1/Queeg Demo.cpp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Demo 1/Queeg Demo.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Demo 1/Queeg Demo.mcp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Demo 1/background.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Demo 1/background.3dm -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Demo 1/map.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Demo 1/map.3dm -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Demo 1/racer.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Demo 1/racer.3dm -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Demo 1/target.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Demo 1/target.3dm -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGCamera.cpp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGCamera.h -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGDemoInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGDemoInput.h -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGDemoInput_Mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGDemoInput_Mac.cpp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGDemoInput_Win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGDemoInput_Win.cpp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGObject.cpp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGObject.h -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGScene.cpp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGScene.h -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGTriMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGTriMesh.cpp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGTriMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGTriMesh.h -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGUtils.cpp -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QGUtils.h -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/QueegMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/QueegMacros.h -------------------------------------------------------------------------------- /SDK/Extras/Queeg/Queeg Source/SimpleVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Queeg/Queeg Source/SimpleVector.h -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/Carbon Resources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/Carbon Resources.r -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/Custom Source/MyApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/Custom Source/MyApp.h -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/Info.plist -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/Moof Source/MoofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/Moof Source/MoofApp.h -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/Pane Source/Pane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/Pane Source/Pane.h -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/Pane Source/UrlPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/Pane Source/UrlPane.h -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/icons-3DMF.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/icons-3DMF.r -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/icons-APPL.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/icons-APPL.r -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/main program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/main program.cpp -------------------------------------------------------------------------------- /SDK/Extras/Quesa Model Viewer/project-resources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Quesa Model Viewer/project-resources.r -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Devdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Devdoc.html -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Projects/MacOS/Carbon Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Projects/MacOS/Carbon Debug.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Projects/MacOS/Carbon Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Projects/MacOS/Carbon Profile.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Projects/MacOS/Carbon Release.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Projects/MacOS/Carbon Release.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Projects/MacOS/Classic Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Projects/MacOS/Classic Debug.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Projects/MacOS/Rayshade.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Projects/MacOS/Rayshade.mcp -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Projects/MacOS/Rayshade.mcp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Projects/MacOS/Rayshade.mcp.xml -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Projects/Windows/Rayshade.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Projects/Windows/Rayshade.sln -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Rayshade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Rayshade.html -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Resources/MacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Resources/MacOS/Info.plist -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/QD3DPlugin/RSPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/QD3DPlugin/RSPlugin.cpp -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/QD3DPlugin/RSPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/QD3DPlugin/RSPlugin.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/QD3DPlugin/RSPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/QD3DPlugin/RSPrefix.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/QD3DPlugin/RS_Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/QD3DPlugin/RS_Texture.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/RTInterface/RT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/RTInterface/RT.cpp -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/RTInterface/RT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/RTInterface/RT.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/RTInterface/RT_Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/RTInterface/RT_Light.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/RTInterface/RT_Tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/RTInterface/RT_Tracer.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/blob.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/box.cpp -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/box.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/cone.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/csg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/csg.cpp -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/csg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/csg.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/disc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/disc.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/geom.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/grid.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/hf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/hf.cpp -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/hf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/hf.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/LibObj/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/LibObj/list.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade/config.h -------------------------------------------------------------------------------- /SDK/Extras/Rayshade/Sources/Rayshade_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Rayshade/Sources/Rayshade_Prefix.pch -------------------------------------------------------------------------------- /SDK/Extras/SampleImporter/E3FFormat_Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/SampleImporter/E3FFormat_Sample.c -------------------------------------------------------------------------------- /SDK/Extras/SampleImporter/E3FFormat_Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/SampleImporter/E3FFormat_Sample.h -------------------------------------------------------------------------------- /SDK/Extras/SampleImporter/SampleImporter.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/SampleImporter/SampleImporter.dsp -------------------------------------------------------------------------------- /SDK/Extras/SampleImporter/SampleImporter.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/SampleImporter/SampleImporter.mcp -------------------------------------------------------------------------------- /SDK/Extras/SampleImporter/SampleImporter.mcp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/SampleImporter/SampleImporter.mcp.exp -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/ReadMe.txt -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/Controller.cpp -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/Controller.h -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/Fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/Fetch.cpp -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/Fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/Fetch.h -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/FetchBE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/FetchBE.cpp -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/FetchBE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/FetchBE.h -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/FetchLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/FetchLE.cpp -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/FetchLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/FetchLE.h -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/FormatException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/FormatException.h -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/RegisterHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/RegisterHandlers.h -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/Textify3DMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/Textify3DMF.cpp -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/Textify3DMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/Textify3DMF.h -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/TypeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/TypeHandler.cpp -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Source/TypeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Source/TypeHandler.h -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/Textify-proj.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/Textify-proj.xcconfig -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/main.cpp -------------------------------------------------------------------------------- /SDK/Extras/Textify3DMF/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/Textify3DMF/prefix.h -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Resources/Info.plist -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Resources/Reader-CFM.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Resources/Reader-CFM.r -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Resources/Reader.plc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Resources/Reader.plc -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Resources/Reader.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Resources/Reader.rc -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Resources/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Resources/version.h -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Source/CVRMLReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Source/CVRMLReader.cpp -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Source/CVRMLReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Source/CVRMLReader.h -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Source/VRML 1/ParseVRML1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Source/VRML 1/ParseVRML1.h -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Source/VRML 2/ParseVRML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Source/VRML 2/ParseVRML.h -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Source/boost-user-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Source/boost-user-config.h -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Source/main.cpp -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Source/quesa-methods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Source/quesa-methods.cpp -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/Source/quesa-methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/Source/quesa-methods.h -------------------------------------------------------------------------------- /SDK/Extras/VRML Reader/read-me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Extras/VRML Reader/read-me.html -------------------------------------------------------------------------------- /SDK/Includes/Includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Includes.html -------------------------------------------------------------------------------- /SDK/Includes/Quesa/CQ3GroupRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/CQ3GroupRange.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/CQ3ObjectRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/CQ3ObjectRef.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/CQ3ObjectRef_Gets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/CQ3ObjectRef_Gets.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/CQ3WeakObjectRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/CQ3WeakObjectRef.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/Q3GroupIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/Q3GroupIterator.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/Quesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/Quesa.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaCamera.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaCustomElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaCustomElements.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaDrawContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaDrawContext.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaErrors.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaExtension.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaGeometry.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaGroup.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaIO.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaLight.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaMath.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaMathOperators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaMathOperators.hpp -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaMemory.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaPick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaPick.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaRenderer.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaSet.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaShader.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaStorage.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaString.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaStyle.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaTransform.h -------------------------------------------------------------------------------- /SDK/Includes/Quesa/QuesaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Includes/Quesa/QuesaView.h -------------------------------------------------------------------------------- /SDK/Libraries/Mac/Stub/Quesa Gestalt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Libraries/Mac/Stub/Quesa Gestalt -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Box.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Box.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Box_Default.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Box_Default.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Box_Flipped.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Box_Flipped.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Box_Skewed.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Box_Skewed.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Box~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Box~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Box~GeoWarn1.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Box~GeoWarn1.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Box~GeoWarn2.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Box~GeoWarn2.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_CapAttributesA.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_CapAttributesA.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_CapAttributesB.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_CapAttributesB.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_CapsA.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_CapsA.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_CapsB.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_CapsB.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_Default.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_Default.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_Flipped.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_Flipped.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_PartialA.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_PartialA.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_PartialB.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_PartialB.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_PartialC.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_PartialC.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_PartialD.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_PartialD.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_PartialE.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_PartialE.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_PartialF.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_PartialF.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_PartialG.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_PartialG.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone_Skewed.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone_Skewed.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone~GeoWarn1A.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone~GeoWarn1A.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone~GeoWarn1B.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone~GeoWarn1B.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone~GeoWarn2A.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone~GeoWarn2A.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cone~GeoWarn2B.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cone~GeoWarn2B.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_CapsA.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_CapsA.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_CapsB.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_CapsB.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_CapsC.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_CapsC.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_CapsD.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_CapsD.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_Default.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_Default.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_Flipped.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_Flipped.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_PartialA.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_PartialA.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_PartialB.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_PartialB.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_PartialC.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_PartialC.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_PartialD.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_PartialD.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_PartialE.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_PartialE.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_PartialF.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_PartialF.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_PartialG.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_PartialG.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder_Skewed.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder_Skewed.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder~GeoWarn1A.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder~GeoWarn1A.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder~GeoWarn1B.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder~GeoWarn1B.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder~GeoWarn2A.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder~GeoWarn2A.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Cylinder~GeoWarn2B.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Cylinder~GeoWarn2B.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk_Default.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk_Default.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk_PartialA.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk_PartialA.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk_PartialB.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk_PartialB.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk_PartialC.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk_PartialC.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk_PartialD.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk_PartialD.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk_PartialE.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk_PartialE.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk_PartialF.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk_PartialF.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk_Skewed.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk_Skewed.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Disk~GeoWarn1.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Disk~GeoWarn1.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipse.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipse.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipse_Default.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipse_Default.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipse_PartialA.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipse_PartialA.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipse_PartialB.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipse_PartialB.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipse_Skewed.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipse_Skewed.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipse~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipse~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipse~GeoWarn1.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipse~GeoWarn1.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_Default.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_Default.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_Flipped.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_Flipped.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_PartialA.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_PartialA.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_PartialB.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_PartialB.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_PartialC.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_PartialC.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_PartialD.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_PartialD.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_PartialE.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_PartialE.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_PartialF.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_PartialF.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_PartialG.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_PartialG.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid_Skewed.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid_Skewed.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid~GeoWarn1A.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid~GeoWarn1A.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid~GeoWarn1B.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid~GeoWarn1B.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid~GeoWarn2A.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid~GeoWarn2A.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Ellipsoid~GeoWarn2B.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Ellipsoid~GeoWarn2B.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/GeneralPolygon.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/GeneralPolygon.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/GeneralPolygon_Star.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/GeneralPolygon_Star.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Line.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Line.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Line~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Line~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Marker.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Marker.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexAa.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexAa.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexAb.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexAb.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexAc.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexAc.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexBa.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexBa.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexBb.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexBb.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexCa.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexCa.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexCb.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexCb.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexDa.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexDa.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexDb.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexDb.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexE.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexE.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexFa.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexFa.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexFb.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexFb.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexG.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexG.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_ComplexH.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_ComplexH.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_Concave.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_Concave.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_Duplicate.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_Duplicate.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_Merge.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_Merge.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_Nonplanar.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_Nonplanar.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_Star.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_Star.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_TriGrid.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_TriGrid.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh_Unoriented.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh_Unoriented.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh~Cross.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh~Cross.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh~GeoWarn1.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh~GeoWarn1.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh~GeoWarn2.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh~GeoWarn2.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh~TopoErr0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh~TopoErr0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh~TopoErr1.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh~TopoErr1.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Mesh~TopoErr2.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Mesh~TopoErr2.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/NURBCurve.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/NURBCurve.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/NURBCurve_Line.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/NURBCurve_Line.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/NURBCurve_PolyLine.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/NURBCurve_PolyLine.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/NURBPatch.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/NURBPatch.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/PixmapMarker.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/PixmapMarker.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Point.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Point.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/PolyLine.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/PolyLine.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/PolyLine~GeoWarn0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/PolyLine~GeoWarn0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/PolyLine~TopoErr0.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/PolyLine~TopoErr0.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Polygon.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Polygon.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Polyline-attributes.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Polyline-attributes.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/TriMesh-face-colors.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/TriMesh-face-colors.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/TriMesh-fancy.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/TriMesh-fancy.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/TriMesh-no-normals.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/TriMesh-no-normals.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/TriMesh-simple.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/TriMesh-simple.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/TriMesh-transparent.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/TriMesh-transparent.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Geometry/Triangle.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Geometry/Triangle.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Misc/Quesa Logo as text.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Misc/Quesa Logo as text.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Misc/references.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Misc/references.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/texture-interference.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/texture-interference.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/texture-wrapping.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/texture-wrapping.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-16bit-565-big.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-16bit-565-big.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-16bit-565-little.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-16bit-565-little.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-16bit-big.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-16bit-big.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-16bit-little.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-16bit-little.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-24bit-big.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-24bit-big.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-24bit-little.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-24bit-little.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-32bit-big.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-32bit-big.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-32bit-little.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-32bit-little.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/tx-argb16-big.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/tx-argb16-big.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Shaders/uv-transform.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Shaders/uv-transform.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Styles/DepthRangeStyle.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Styles/DepthRangeStyle.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Styles/WriteSwitchStyle.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Styles/WriteSwitchStyle.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Styles/fill-style.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Styles/fill-style.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Styles/highlight-texture.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Styles/highlight-texture.3dmf -------------------------------------------------------------------------------- /SDK/Models/Test/Styles/highlight.3dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/SDK/Models/Test/Styles/highlight.3dmf -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwwalker/Quesa/HEAD/icon.png --------------------------------------------------------------------------------