├── .clang-format ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── FrameWorks ├── libassimp.a └── libassimp_sim.a ├── Iyan3D.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── harishankar.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── Iyan3D-Simulator.xcscheme │ │ ├── Iyan3D.xcscheme │ │ └── xcschememanagement.plist │ ├── harishankarn.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── Iyan3D.xcscheme │ │ ├── Iyan3DSimulator1.xcscheme │ │ └── xcschememanagement.plist │ ├── karthik.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── Iyan3D.xcscheme │ │ ├── Iyan3DSimulator1.xcscheme │ │ └── xcschememanagement.plist │ ├── sankar.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── Iyan3D.xcscheme │ │ ├── Iyan3DSimulator1.xcscheme │ │ └── xcschememanagement.plist │ ├── smackall.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── Iyan3D.xcscheme │ │ ├── Iyan3DSimulator1.xcscheme │ │ └── xcschememanagement.plist │ ├── vigneshkumar.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── Iyan3D.xcscheme │ │ ├── Iyan3DSimulator1.xcscheme │ │ └── xcschememanagement.plist │ └── vivek.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Iyan3D.xcscheme │ ├── Iyan3DSimulator1.xcscheme │ └── xcschememanagement.plist ├── Iyan3D ├── 3rdParty │ ├── ANImageBitmapRep │ │ ├── ANImageBitmapRep.h │ │ ├── ANImageBitmapRep.m │ │ ├── BitmapContextRep.h │ │ ├── BitmapContextRep.m │ │ ├── Compatibility │ │ │ ├── NSImage+ANImageBitmapRep.h │ │ │ ├── NSImage+ANImageBitmapRep.m │ │ │ ├── OSCommonImage.h │ │ │ ├── OSCommonImage.m │ │ │ ├── UIImage+ANImageBitmapRep.h │ │ │ └── UIImage+ANImageBitmapRep.m │ │ ├── CoreGraphics │ │ │ ├── CGContextCreator.h │ │ │ ├── CGContextCreator.m │ │ │ ├── CGImageContainer.h │ │ │ └── CGImageContainer.m │ │ └── Manipulators │ │ │ ├── BitmapContextManipulator.h │ │ │ ├── BitmapContextManipulator.m │ │ │ ├── BitmapCropManipulator.h │ │ │ ├── BitmapCropManipulator.m │ │ │ ├── BitmapDrawManipulator.h │ │ │ ├── BitmapDrawManipulator.m │ │ │ ├── BitmapRotationManipulator.h │ │ │ ├── BitmapRotationManipulator.m │ │ │ ├── BitmapScaleManipulator.h │ │ │ └── BitmapScaleManipulator.m │ ├── FPPopOver │ │ ├── ARCMacros.h │ │ ├── FPPopoverController.h │ │ ├── FPPopoverController.m │ │ ├── FPPopoverView.h │ │ ├── FPPopoverView.m │ │ ├── FPTouchView.h │ │ └── FPTouchView.m │ ├── JDFToolTip │ │ ├── JDFSequentialTooltipManager.h │ │ ├── JDFSequentialTooltipManager.m │ │ ├── JDFTooltipManager.h │ │ ├── JDFTooltipManager.m │ │ ├── JDFTooltipView.h │ │ ├── JDFTooltipView.m │ │ ├── JDFTooltips.h │ │ ├── UILabel+JDFTooltips.h │ │ ├── UILabel+JDFTooltips.m │ │ ├── UIView+JDFTooltips.h │ │ └── UIView+JDFTooltips.m │ ├── Popover │ │ ├── UIBarButtonItem+WEPopover.h │ │ ├── UIBarButtonItem+WEPopover.m │ │ ├── WEBlockingGestureRecognizer.h │ │ ├── WEBlockingGestureRecognizer.m │ │ ├── WEPopoverContainerView.h │ │ ├── WEPopoverContainerView.m │ │ ├── WEPopoverContainerViewProperties.h │ │ ├── WEPopoverContainerViewProperties.m │ │ ├── WEPopoverContentViewController.h │ │ ├── WEPopoverContentViewController.m │ │ ├── WEPopoverController.h │ │ ├── WEPopoverController.m │ │ ├── WEPopoverParentView.h │ │ ├── WEPopoverTableViewController.h │ │ ├── WEPopoverTableViewController.m │ │ ├── WEPopoverViewController.h │ │ ├── WEPopoverViewController.m │ │ ├── WETouchableView.h │ │ └── WETouchableView.m │ ├── include │ │ ├── CDynamicMeshBuffer.h │ │ ├── CIndexBuffer.h │ │ ├── CMeshBuffer.h │ │ ├── CVertexBuffer.h │ │ ├── EAttributes.h │ │ ├── ECullingTypes.h │ │ ├── EDebugSceneTypes.h │ │ ├── EDeviceTypes.h │ │ ├── EDriverFeatures.h │ │ ├── EDriverTypes.h │ │ ├── EGUIAlignment.h │ │ ├── EGUIElementTypes.h │ │ ├── EHardwareBufferFlags.h │ │ ├── EMaterialFlags.h │ │ ├── EMaterialTypes.h │ │ ├── EMeshWriterEnums.h │ │ ├── EMessageBoxFlags.h │ │ ├── EPrimitiveTypes.h │ │ ├── ESceneNodeAnimatorTypes.h │ │ ├── ESceneNodeTypes.h │ │ ├── EShaderTypes.h │ │ ├── ETerrainElements.h │ │ ├── EVertexAttributes.h │ │ ├── IAnimatedMesh.h │ │ ├── IAnimatedMeshMD2.h │ │ ├── IAnimatedMeshMD3.h │ │ ├── IAnimatedMeshSceneNode.h │ │ ├── IAttributeExchangingObject.h │ │ ├── IAttributes.h │ │ ├── IBillboardSceneNode.h │ │ ├── IBillboardTextSceneNode.h │ │ ├── IBoneSceneNode.h │ │ ├── ICameraSceneNode.h │ │ ├── IColladaMeshWriter.h │ │ ├── ICursorControl.h │ │ ├── IDummyTransformationSceneNode.h │ │ ├── IDynamicMeshBuffer.h │ │ ├── IEventReceiver.h │ │ ├── IFileArchive.h │ │ ├── IFileList.h │ │ ├── IFileSystem.h │ │ ├── IGPUProgrammingServices.h │ │ ├── IGUIButton.h │ │ ├── IGUICheckBox.h │ │ ├── IGUIColorSelectDialog.h │ │ ├── IGUIComboBox.h │ │ ├── IGUIContextMenu.h │ │ ├── IGUIEditBox.h │ │ ├── IGUIElement.h │ │ ├── IGUIElementFactory.h │ │ ├── IGUIEnvironment.h │ │ ├── IGUIFileOpenDialog.h │ │ ├── IGUIFont.h │ │ ├── IGUIFontBitmap.h │ │ ├── IGUIImage.h │ │ ├── IGUIImageList.h │ │ ├── IGUIInOutFader.h │ │ ├── IGUIListBox.h │ │ ├── IGUIMeshViewer.h │ │ ├── IGUIScrollBar.h │ │ ├── IGUISkin.h │ │ ├── IGUISpinBox.h │ │ ├── IGUISpriteBank.h │ │ ├── IGUIStaticText.h │ │ ├── IGUITabControl.h │ │ ├── IGUITable.h │ │ ├── IGUIToolbar.h │ │ ├── IGUITreeView.h │ │ ├── IGUIWindow.h │ │ ├── IGeometryCreator.h │ │ ├── IImage.h │ │ ├── IImageLoader.h │ │ ├── IImageWriter.h │ │ ├── IIndexBuffer.h │ │ ├── ILightManager.h │ │ ├── ILightSceneNode.h │ │ ├── ILogger.h │ │ ├── IMaterialRenderer.h │ │ ├── IMaterialRendererServices.h │ │ ├── IMesh.h │ │ ├── IMeshBuffer.h │ │ ├── IMeshCache.h │ │ ├── IMeshLoader.h │ │ ├── IMeshManipulator.h │ │ ├── IMeshSceneNode.h │ │ ├── IMeshWriter.h │ │ ├── IMetaTriangleSelector.h │ │ ├── IOSOperator.h │ │ ├── IParticleAffector.h │ │ ├── IParticleAnimatedMeshSceneNodeEmitter.h │ │ ├── IParticleAttractionAffector.h │ │ ├── IParticleBoxEmitter.h │ │ ├── IParticleCylinderEmitter.h │ │ ├── IParticleEmitter.h │ │ ├── IParticleFadeOutAffector.h │ │ ├── IParticleGravityAffector.h │ │ ├── IParticleMeshEmitter.h │ │ ├── IParticleRingEmitter.h │ │ ├── IParticleRotationAffector.h │ │ ├── IParticleSphereEmitter.h │ │ ├── IParticleSystemSceneNode.h │ │ ├── IQ3LevelMesh.h │ │ ├── IQ3Shader.h │ │ ├── IRandomizer.h │ │ ├── IReadFile.h │ │ ├── IReferenceCounted.h │ │ ├── ISceneCollisionManager.h │ │ ├── ISceneLoader.h │ │ ├── ISceneManager.h │ │ ├── ISceneNode.h │ │ ├── ISceneNodeAnimator.h │ │ ├── ISceneNodeAnimatorCameraFPS.h │ │ ├── ISceneNodeAnimatorCameraMaya.h │ │ ├── ISceneNodeAnimatorCollisionResponse.h │ │ ├── ISceneNodeAnimatorFactory.h │ │ ├── ISceneNodeFactory.h │ │ ├── ISceneUserDataSerializer.h │ │ ├── IShaderConstantSetCallBack.h │ │ ├── IShadowVolumeSceneNode.h │ │ ├── ISkinnedMesh.h │ │ ├── ITerrainSceneNode.h │ │ ├── ITextSceneNode.h │ │ ├── ITexture.h │ │ ├── ITimer.h │ │ ├── ITriangleSelector.h │ │ ├── IVertexBuffer.h │ │ ├── IVideoDriver.h │ │ ├── IVideoModeList.h │ │ ├── IVolumeLightSceneNode.h │ │ ├── IWriteFile.h │ │ ├── IXMLReader.h │ │ ├── IXMLWriter.h │ │ ├── IrrCompileConfig.h │ │ ├── IrrlichtDevice.h │ │ ├── Keycodes.h │ │ ├── S3DVertex.h │ │ ├── SAnimatedMesh.h │ │ ├── SColor.h │ │ ├── SExposedVideoData.h │ │ ├── SIrrCreationParameters.h │ │ ├── SKeyMap.h │ │ ├── SLight.h │ │ ├── SMaterial.h │ │ ├── SMaterialLayer.h │ │ ├── SMesh.h │ │ ├── SMeshBuffer.h │ │ ├── SMeshBufferLightMap.h │ │ ├── SMeshBufferTangents.h │ │ ├── SParticle.h │ │ ├── SSharedMeshBuffer.h │ │ ├── SSkinMeshBuffer.h │ │ ├── SVertexIndex.h │ │ ├── SVertexManipulator.h │ │ ├── SViewFrustum.h │ │ ├── SceneParameters.h │ │ ├── aabbox3d.h │ │ ├── coreutil.h │ │ ├── dimension2d.h │ │ ├── driverChoice.h │ │ ├── fast_atof.h │ │ ├── heapsort.h │ │ ├── irrAllocator.h │ │ ├── irrArray.h │ │ ├── irrList.h │ │ ├── irrMap.h │ │ ├── irrMath.h │ │ ├── irrString.h │ │ ├── irrTypes.h │ │ ├── irrXML.h │ │ ├── irrlicht.h │ │ ├── irrpack.h │ │ ├── irrunpack.h │ │ ├── leakHunter.h │ │ ├── line2d.h │ │ ├── line3d.h │ │ ├── matrix4.h │ │ ├── path.h │ │ ├── plane3d.h │ │ ├── position2d.h │ │ ├── quaternion.h │ │ ├── rect.h │ │ ├── triangle3d.h │ │ ├── vector2d.h │ │ └── vector3d.h │ └── zip │ │ ├── ZipArchive.h │ │ ├── ZipArchive.mm │ │ └── minizip │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h ├── AnimationSelectionCollectionViewCellPhone.xib ├── AnimationSelectionSliderPhone.xib ├── AssetFrameCellPhone.xib ├── Core │ ├── AnimationItem.h │ ├── AnimationItem.m │ ├── AssetItem.h │ ├── AssetItem.m │ ├── CacheSystem.h │ ├── CacheSystem.m │ ├── Options.h │ ├── Options.m │ ├── SceneItem.h │ ├── SceneItem.m │ ├── Utility.h │ └── Utility.m ├── Helpers │ ├── AppHelper.h │ ├── AppHelper.mm │ ├── RenderViewManager.h │ └── RenderViewManager.mm ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x-1.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small-41.png │ │ ├── Icon-Small-42.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x-1.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── Icon167.png │ │ ├── Icon20.png │ │ └── iconlarge.png │ └── Contents.json ├── ImportImageNewPhone.xib ├── Iyan3D-Info.plist ├── Iyan3D-Prefix.pch ├── ObjSidePanel.h ├── ObjSidePanel.mm ├── ObjSidePanel.xib ├── ObjSidePanelPhone.xib ├── PopUpViewControllerPhone.xib ├── RETrimControl.bundle │ ├── Inner.png │ ├── Inner@2x.png │ ├── Outer.png │ ├── Outer@2x.png │ ├── Popover.png │ ├── Popover@2x.png │ ├── PopoverLong.png │ ├── PopoverLong@2x.png │ ├── Slider.png │ ├── Slider@2x.png │ ├── SliderMiddle.png │ └── SliderMiddle@2x.png ├── RETrimControl.h ├── RETrimControl.m ├── RETrimPopover.h ├── RETrimPopover.m ├── Resources │ ├── FontFiles │ │ ├── Bernstein Regular.ttf │ │ ├── CAC Champagne.ttf │ │ ├── Hot Pizza.ttf │ │ ├── Idigital Bold.otf │ │ ├── Open Sans Light.ttf │ │ └── Quicksand Italic.otf │ ├── images │ │ ├── CommonProps │ │ │ ├── BackBtn.png │ │ │ ├── BackBtn@2x.png │ │ │ ├── BackBtn@3x.png │ │ │ ├── Icon0.png │ │ │ ├── Icon0@2x - Copy.png │ │ │ ├── Icon0@3x.png │ │ │ ├── Icon1.png │ │ │ ├── Icon1@2x.png │ │ │ ├── Icon1@3x.png │ │ │ └── tick.png │ │ ├── HelpIcon │ │ │ ├── Help.png │ │ │ ├── Help@2x.png │ │ │ ├── Help_iphone.png │ │ │ ├── Help_iphone@2X.png │ │ │ └── Help_iphone@3X.png │ │ ├── ImportObj │ │ │ ├── shape1.png │ │ │ ├── shape1@2x.png │ │ │ ├── shape2.png │ │ │ ├── shape2@2x.png │ │ │ ├── shape3.png │ │ │ ├── shape3@2x.png │ │ │ ├── shape4.png │ │ │ ├── shape4@2x.png │ │ │ ├── shape5.png │ │ │ ├── shape5@2x.png │ │ │ ├── shape6.png │ │ │ └── shape6@2x.png │ │ ├── OnBoard │ │ │ ├── Divider-1.png │ │ │ ├── Divider-1@2x.png │ │ │ ├── Divider-1_phone.png │ │ │ ├── Divider-1_phone@2x.png │ │ │ ├── Divider-1_phone@3x.png │ │ │ ├── Step-1_-img.png │ │ │ ├── Step-1_-img@2x.png │ │ │ ├── Step-1_-img_phone.png │ │ │ ├── Step-1_-img_phone@2x.png │ │ │ ├── Step-1_-img_phone@3x.png │ │ │ ├── Step-2_-img.png │ │ │ ├── Step-2_-img@2x.png │ │ │ ├── Step-2_-img_phone.png │ │ │ ├── Step-2_-img_phone@2x.png │ │ │ ├── Step-2_-img_phone@3x.png │ │ │ ├── Step-3_-img.png │ │ │ ├── Step-3_-img@2x.png │ │ │ ├── Step-3_-img_phone.png │ │ │ ├── Step-3_-img_phone@2x.png │ │ │ ├── Step-3_-img_phone@3x.png │ │ │ ├── Step-4_-img.png │ │ │ ├── Step-4_-img@2x.png │ │ │ ├── Step-4_-img_phone.png │ │ │ ├── Step-4_-img_phone@2x.png │ │ │ ├── Step-4_-img_phone@3x.png │ │ │ ├── Welcome-Img.png │ │ │ ├── Welcome-Img@2x.png │ │ │ ├── Welcome-Img_phone.png │ │ │ ├── Welcome-Img_phone@2x.png │ │ │ ├── Welcome-Img_phone@3x.png │ │ │ ├── round-close.png │ │ │ ├── round-close@2x.png │ │ │ ├── round-close_phone.png │ │ │ ├── round-close_phone@2x.png │ │ │ └── round-close_phone@3x.png │ │ ├── Popover │ │ │ ├── popoverArrowDown-white@2x.png │ │ │ ├── popoverArrowDown.png │ │ │ ├── popoverArrowDown@2x.png │ │ │ ├── popoverArrowDownSimple.png │ │ │ ├── popoverArrowLeft-white@2x.png │ │ │ ├── popoverArrowLeft.png │ │ │ ├── popoverArrowLeft@2x.png │ │ │ ├── popoverArrowLeftSimple.png │ │ │ ├── popoverArrowRight-white@2x.png │ │ │ ├── popoverArrowRight.png │ │ │ ├── popoverArrowRight@2x.png │ │ │ ├── popoverArrowRightSimple.png │ │ │ ├── popoverArrowUp-white@2x.png │ │ │ ├── popoverArrowUp.png │ │ │ ├── popoverArrowUp@2x.png │ │ │ ├── popoverArrowUpSimple.png │ │ │ ├── popoverBg-white@2x.png │ │ │ ├── popoverBg.png │ │ │ ├── popoverBg@2x.png │ │ │ └── popoverBgSimple.png │ │ ├── SceneSelection │ │ │ ├── Clone.png │ │ │ ├── Delete.png │ │ │ ├── Delete@2x.png │ │ │ ├── Mail.png │ │ │ ├── Mail@2x.png │ │ │ ├── New-scene.png │ │ │ ├── New.png │ │ │ ├── New@2x.png │ │ │ ├── close.png │ │ │ ├── close@2x.png │ │ │ ├── properties-img-phone.png │ │ │ ├── properties-img-phone@2x.png │ │ │ ├── properties-img-phone@3x.png │ │ │ ├── properties-img.png │ │ │ └── properties-img@2x.png │ │ ├── TextSelection │ │ │ ├── Bevel-pad.png │ │ │ ├── Bevel_IPhone.png │ │ │ ├── Bevel_IPhone@2x.png │ │ │ ├── No-Bevel.png │ │ │ ├── No-Bevel_IPhone.png │ │ │ ├── No-Bevel_IPhone@2x.png │ │ │ ├── color.png │ │ │ ├── color@2x.png │ │ │ ├── color_IPhone.png │ │ │ ├── color_IPhone@2x.png │ │ │ └── color_IPhone@3x.png │ │ ├── TopView │ │ │ ├── Help.png │ │ │ ├── Help@2x.png │ │ │ ├── Help_iphone.png │ │ │ ├── Help_iphone@2x.png │ │ │ ├── Help_iphone@3x.png │ │ │ ├── View_IPhone.png │ │ │ ├── View_IPhone@2x.png │ │ │ ├── View_IPhone@3x.png │ │ │ ├── info-icon.png │ │ │ ├── info-icon@2x.png │ │ │ ├── info-icon_phone.png │ │ │ ├── info-icon_phone@2x.png │ │ │ └── info-icon_phone@3x.png │ │ ├── White-texture.png │ │ ├── alpha.png │ │ ├── assetSelection │ │ │ ├── selected_mark.png │ │ │ └── selected_mark@2x.png │ │ ├── dummy.png │ │ ├── editorViewController │ │ │ ├── IPhone │ │ │ │ ├── Add-Bones_IPhone.png │ │ │ │ ├── Add-Frames_IPhone.png │ │ │ │ ├── Animation_IPhone.png │ │ │ │ ├── Back_IPhone.png │ │ │ │ ├── EXPORT.png │ │ │ │ ├── Export-image_IPhone.png │ │ │ │ ├── Export-video_IPhone.png │ │ │ │ ├── IPhone3x │ │ │ │ │ ├── Add-Bones_IPhone@3x.png │ │ │ │ │ ├── Add-Frames_IPhone@3x.png │ │ │ │ │ ├── Animation_IPhone@3x.png │ │ │ │ │ ├── Back_IPhone@3x.png │ │ │ │ │ ├── EXPORT@3x.png │ │ │ │ │ ├── Export-image_IPhone@3x.png │ │ │ │ │ ├── Export-video_IPhone@3x.png │ │ │ │ │ ├── Import-Light_IPhone@3x.png │ │ │ │ │ ├── Import-image_IPhone@3x.png │ │ │ │ │ ├── Import-model_IPhone@3x.png │ │ │ │ │ ├── Import-models_IPhone@3x.png │ │ │ │ │ ├── Import-text_IPhone@3x.png │ │ │ │ │ ├── Import_IPhone@3x.png │ │ │ │ │ ├── Info_IPhone@3x.png │ │ │ │ │ ├── Login-IPhone@3x.png │ │ │ │ │ ├── MY-OBJECTS_IPhone@3x.png │ │ │ │ │ ├── Move_IPhone@3x.png │ │ │ │ │ ├── My-objects-Camera_IPhone@3x.png │ │ │ │ │ ├── My-objects-Image_IPhone@3x.png │ │ │ │ │ ├── My-objects-Light_IPhone@3x.png │ │ │ │ │ ├── My-objects-Models_IPhone@3x.png │ │ │ │ │ ├── My-objects-Particles-Phone@3x.png │ │ │ │ │ ├── My-objects-Text_IPhone@3x.png │ │ │ │ │ ├── Next-Frame_IPhone@3x.png │ │ │ │ │ ├── Options_IPhone@3x.png │ │ │ │ │ ├── Particle_IPhone@3x.png │ │ │ │ │ ├── Play_IPhone@3x.png │ │ │ │ │ ├── Previous-frame_IPhone@3x.png │ │ │ │ │ ├── Redo_IPhone@3x.png │ │ │ │ │ ├── Rotate_IPhone@3x.png │ │ │ │ │ ├── Scale_IPhone@3x.png │ │ │ │ │ ├── View_IPhone@3x.png │ │ │ │ │ ├── pause_IPhone@3x_.png │ │ │ │ │ └── undo_IPhone@3x.png │ │ │ │ ├── Import-Light_IPhone.png │ │ │ │ ├── Import-image_IPhone.png │ │ │ │ ├── Import-model_IPhone.png │ │ │ │ ├── Import-models_IPhone.png │ │ │ │ ├── Import-text_IPhone.png │ │ │ │ ├── Import_IPhone.png │ │ │ │ ├── Iphone 2x │ │ │ │ │ ├── Add-Bones_IPhone@2x.png │ │ │ │ │ ├── Add-Frames_IPhone@2x.png │ │ │ │ │ ├── Animation_IPhone@2x.png │ │ │ │ │ ├── Back_IPhone@2x.png │ │ │ │ │ ├── EXPORT@2x.png │ │ │ │ │ ├── Export-image_IPhone@2x.png │ │ │ │ │ ├── Export-video_IPhone@2x.png │ │ │ │ │ ├── Import-Light_IPhone@2x.png │ │ │ │ │ ├── Import-image_IPhone@2x.png │ │ │ │ │ ├── Import-model_IPhone@2x.png │ │ │ │ │ ├── Import-models_IPhone@2x.png │ │ │ │ │ ├── Import-text_IPhone@2x.png │ │ │ │ │ ├── Import_IPhone@2x.png │ │ │ │ │ ├── Info_IPhone@2x.png │ │ │ │ │ ├── Login-IPhone@2x.png │ │ │ │ │ ├── Login-Icon_IPhone@2x.png │ │ │ │ │ ├── MY-OBJECTS_IPhone@2x.png │ │ │ │ │ ├── Move_IPhone@2x.png │ │ │ │ │ ├── My-objects-Camera_IPhone@2x.png │ │ │ │ │ ├── My-objects-Image_IPhone@2x.png │ │ │ │ │ ├── My-objects-Light_IPhone@2x.png │ │ │ │ │ ├── My-objects-Models_IPhone@2x.png │ │ │ │ │ ├── My-objects-Text_IPhone@2x.png │ │ │ │ │ ├── Next-Frame_IPhone@2x.png │ │ │ │ │ ├── Options_IPhone-@2X.png │ │ │ │ │ ├── Options_IPhone@2x.png │ │ │ │ │ ├── Particle_IPhone@2x.png │ │ │ │ │ ├── Play_IPhone@2x.png │ │ │ │ │ ├── Previous-frame_IPhone@2x.png │ │ │ │ │ ├── Redo_IPhone@2x.png │ │ │ │ │ ├── Rotate_IPhone@2x.png │ │ │ │ │ ├── Scale_IPhone@2x.png │ │ │ │ │ ├── View_IPhone@2x.png │ │ │ │ │ ├── pause_IPhone@2x_.png │ │ │ │ │ └── undo_IPhone@2x.png │ │ │ │ ├── Login-IPhone.png │ │ │ │ ├── Login-Icon_IPhone.png │ │ │ │ ├── MY-OBJECTS_IPhone.png │ │ │ │ ├── Move_IPhone.png │ │ │ │ ├── My-objects-Camera_IPhone.png │ │ │ │ ├── My-objects-Image_IPhone.png │ │ │ │ ├── My-objects-Light_IPhone.png │ │ │ │ ├── My-objects-Models_IPhone.png │ │ │ │ ├── My-objects-Particles-Phone.png │ │ │ │ ├── My-objects-Text_IPhone.png │ │ │ │ ├── Next-frame_IPhone.png │ │ │ │ ├── Options_IPhone.png │ │ │ │ ├── Particle_IPhone.png │ │ │ │ ├── Play_IPhone.png │ │ │ │ ├── Previous-frame_IPhone.png │ │ │ │ ├── Redo_IPhone.png │ │ │ │ ├── Rotate_IPhone.png │ │ │ │ ├── Scale_IPhone.png │ │ │ │ ├── View_IPhone.png │ │ │ │ ├── pause_IPhone.png │ │ │ │ └── undo_IPhone.png │ │ │ ├── bracket.png │ │ │ ├── render_image-phone.png │ │ │ ├── render_image-phone@2x.png │ │ │ ├── render_image-phone@3x.png │ │ │ ├── render_image.png │ │ │ ├── render_image@2x.png │ │ │ ├── rightview │ │ │ │ ├── Add-Bones_Pad.png │ │ │ │ ├── Add-Bones_Pad@2x.png │ │ │ │ ├── Animation_Pad.png │ │ │ │ ├── Animation_Pad@2x.png │ │ │ │ ├── Back.png │ │ │ │ ├── Back@2x.png │ │ │ │ ├── Export-image_Pad.png │ │ │ │ ├── Export-image_Pad@2x.png │ │ │ │ ├── Export-video_Pad.png │ │ │ │ ├── Export-video_Pad@2x.png │ │ │ │ ├── Export_Pad.png │ │ │ │ ├── Export_Pad@2x.png │ │ │ │ ├── Import-Light_Pad.png │ │ │ │ ├── Import-Light_Pad@2x.png │ │ │ │ ├── Import-image_Pad.png │ │ │ │ ├── Import-image_Pad@2x.png │ │ │ │ ├── Import-model_Pad.png │ │ │ │ ├── Import-model_Pad@2x.png │ │ │ │ ├── Import-models_Pad.png │ │ │ │ ├── Import-models_Pad@2x.png │ │ │ │ ├── Import-text_Pad.png │ │ │ │ ├── Import-text_Pad@2x.png │ │ │ │ ├── Import_Pad.png │ │ │ │ ├── Import_Pad@2x.png │ │ │ │ ├── Move_Pad.png │ │ │ │ ├── Move_Pad@2x.png │ │ │ │ ├── My-objects-Camera_Pad.png │ │ │ │ ├── My-objects-Camera_Pad@2x.png │ │ │ │ ├── My-objects-Image_Pad.png │ │ │ │ ├── My-objects-Image_Pad@2x.png │ │ │ │ ├── My-objects-Light_Pad.png │ │ │ │ ├── My-objects-Light_Pad@2x.png │ │ │ │ ├── My-objects-Models_Pad.png │ │ │ │ ├── My-objects-Models_Pad@2x.png │ │ │ │ ├── My-objects-Particles.png │ │ │ │ ├── My-objects-Particles@2x.png │ │ │ │ ├── My-objects-Text_Pad.png │ │ │ │ ├── My-objects-Text_Pad@2x.png │ │ │ │ ├── OPtions_Pad@2x.png │ │ │ │ ├── Options_Pad.png │ │ │ │ ├── Particles.png │ │ │ │ ├── Particles@2x.png │ │ │ │ ├── Pause_Pad.png │ │ │ │ ├── Pause_Pad@2x.png │ │ │ │ ├── Play_Pad.png │ │ │ │ ├── Play_Pad@2x.png │ │ │ │ ├── Redo_Pad.png │ │ │ │ ├── Redo_Pad@2x.png │ │ │ │ ├── Rotate_Pad.png │ │ │ │ ├── Rotate_Pad@2x.png │ │ │ │ ├── Scale_IPhone@2x.png │ │ │ │ ├── Scale_Pad.png │ │ │ │ ├── Scale_Pad@2x.png │ │ │ │ ├── Undo_IPhone@2x.png │ │ │ │ ├── Undo_Pad.png │ │ │ │ ├── Undo_Pad@2x.png │ │ │ │ ├── hq-IPhone.png │ │ │ │ ├── hq-IPhone@2x.png │ │ │ │ ├── hq.png │ │ │ │ ├── hq@2x.png │ │ │ │ ├── popover-clone.png │ │ │ │ ├── popover-clone@2x.png │ │ │ │ ├── popover-delete.png │ │ │ │ ├── popover-delete@2x.png │ │ │ │ ├── popover-skin.png │ │ │ │ └── popover-skin@2x.png │ │ │ ├── topview │ │ │ │ ├── Add-Frames.png │ │ │ │ ├── Add-Frames@2x.png │ │ │ │ ├── Add-Frames_IPhone.png │ │ │ │ ├── External-Render.png │ │ │ │ ├── Info@2x.png │ │ │ │ ├── Info_IPhone.png │ │ │ │ ├── Login-icon.png │ │ │ │ ├── Login-icon@2x.png │ │ │ │ ├── Next-Frame.png │ │ │ │ ├── Next-Frame@2x.png │ │ │ │ ├── Next-frame_IPhone.png │ │ │ │ ├── Pause_Pad.png │ │ │ │ ├── Play_Pad.png │ │ │ │ ├── Previous-Frame.png │ │ │ │ ├── Previous-Frame@2x.png │ │ │ │ ├── Previous-frame_IPhone.png │ │ │ │ ├── View.png │ │ │ │ ├── View@2x.png │ │ │ │ ├── View_IPhone.png │ │ │ │ ├── info-icon.png │ │ │ │ ├── info-icon@2x.png │ │ │ │ ├── info-icon_phone.png │ │ │ │ ├── info-icon_phone@2x.png │ │ │ │ └── info-icon_phone@3x.png │ │ │ └── unlock.png │ │ ├── envmap.png │ │ ├── randNoise.png │ │ ├── round83.png │ │ ├── settings │ │ │ ├── Frame-Count-Display_Duration.png │ │ │ ├── Frame-Count-Display_Duration@2x.png │ │ │ ├── Frame-Count-Display_Frames.png │ │ │ ├── Frame-Count-Display_Frames@2x.png │ │ │ ├── Render-Preview-position_Left-Bottom.png │ │ │ ├── Render-Preview-position_Left-Bottom@2x.png │ │ │ ├── Render-Preview-position_Left-Top.png │ │ │ ├── Render-Preview-position_Left-Top@2x.png │ │ │ ├── Render-Preview-position_Right-Bottom.png │ │ │ ├── Render-Preview-position_Right-Bottom@2x.png │ │ │ ├── Render-Preview-position_Right-Top.png │ │ │ ├── Render-Preview-position_Right-Top@2x.png │ │ │ ├── Render-Preview-size_Large.png │ │ │ ├── Render-Preview-size_Large@2x.png │ │ │ ├── Render-Preview-size_Small.png │ │ │ ├── Render-Preview-size_Small@2x.png │ │ │ ├── Tool-Bar_Left.png │ │ │ ├── Tool-Bar_Left@2x.png │ │ │ ├── Tool-Bar_Right.png │ │ │ └── Tool-Bar_Right@2x.png │ │ ├── wheel2.png │ │ └── whiteborder.png │ ├── jsonFiles │ │ ├── boneLimits45.json │ │ ├── bonelimits.json │ │ ├── deviceCodes.json │ │ ├── helpStatements.json │ │ ├── humanTPoseBoneLimits.json │ │ ├── jointsData.json │ │ ├── mirrorJoints.json │ │ └── viewCameraModes.json │ ├── mesh │ │ ├── BasicShapes │ │ │ ├── 60001.sgm │ │ │ ├── 60002.sgm │ │ │ ├── 60003.sgm │ │ │ ├── 60004.sgm │ │ │ ├── 60005.sgm │ │ │ └── 60006.sgm │ │ ├── BoneMesh.sgm │ │ ├── Envelop.sgr │ │ ├── camera.sgm │ │ ├── controls1.sgm │ │ ├── controls2.sgm │ │ ├── controls3.sgm │ │ ├── controls4.sgm │ │ ├── controls5.sgm │ │ ├── controls6.sgm │ │ ├── controls7.sgm │ │ ├── controls8.sgm │ │ ├── controls9.sgm │ │ ├── indicator.sgm │ │ ├── light.sgm │ │ └── sphere.sgm │ └── shaders │ │ └── Shaders.metal ├── SceneSelectionControllerNewPhone.xib ├── SceneSelectionControllerNewPhone@2x.xib ├── SceneSelectionFrameCellPhone.xib ├── SettingsViewController.h ├── SettingsViewController.m ├── SettingsViewController.xib ├── SettingsViewControllerPhone.xib ├── SettingsViewControllerPhone2x.xib ├── TextFrameCellPhone.xib ├── TextSelectionSidePanelPhone.xib ├── TextimportViewControllerPhone.xib ├── da.lproj │ └── Localizable.strings ├── de.lproj │ └── Localizable.strings ├── el.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── es_ES.lproj │ └── Localizable.strings ├── fi.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── iconlarge.png ├── id.lproj │ └── Localizable.strings ├── it.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── ko.lproj │ └── Localizable.strings ├── launch.xib ├── main.m ├── ms.lproj │ └── Localizable.strings ├── nb-NO.lproj │ └── Localizable.strings ├── nb.lproj │ └── Localizable.strings ├── nl.lproj │ └── Localizable.strings ├── pt-BR.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── sv.lproj │ └── Localizable.strings ├── th.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── ui │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── MainViews │ │ ├── AnimationViewcontrol.xib │ │ ├── EditorViewController.h │ │ ├── EditorViewController.mm │ │ ├── EditorViewController.xib │ │ ├── EditorViewControllerPhone.xib │ │ ├── EditorViewControllerPhone@2x.xib │ │ ├── LoadingViewControllerPad.h │ │ ├── LoadingViewControllerPad.mm │ │ ├── LoadingViewControllerPad.xib │ │ ├── SceneSelectionControllerNew.h │ │ ├── SceneSelectionControllerNew.mm │ │ ├── SceneSelectionControllerNew.xib │ │ ├── TextSelectionSidePanel.h │ │ ├── TextSelectionSidePanel.mm │ │ └── TextSelectionSidePanel.xib │ └── Popover Views │ │ ├── AnimationSelectionCollectionViewCell.h │ │ ├── AnimationSelectionCollectionViewCell.mm │ │ ├── AnimationSelectionCollectionViewCell.xib │ │ ├── AnimationSelectionSlider.h │ │ ├── AnimationSelectionSlider.mm │ │ ├── AnimationSelectionSlider.xib │ │ ├── AssetCellView.h │ │ ├── AssetCellView.mm │ │ ├── AssetCellView.xib │ │ ├── AssetCellViewPhone.xib │ │ ├── AssetFrameCell.h │ │ ├── AssetFrameCell.mm │ │ ├── AssetFrameCell.xib │ │ ├── BeginView.xib │ │ ├── BeginViewPhone.xib │ │ ├── BeginViewPhone@2x.xib │ │ ├── CommonProps.h │ │ ├── CommonProps.mm │ │ ├── CommonProps.xib │ │ ├── FontCellView.h │ │ ├── FontCellView.m │ │ ├── FontCellView.xib │ │ ├── FontCellViewPhone.xib │ │ ├── FrameCellNew.h │ │ ├── FrameCellNew.mm │ │ ├── FrameCellNew.xib │ │ ├── FrameCellNewPhone.xib │ │ ├── GetPixelDemo.h │ │ ├── GetPixelDemo.m │ │ ├── ImportImageNew.h │ │ ├── ImportImageNew.mm │ │ ├── ImportImageNew.xib │ │ ├── LightAndVideoProperties.xib │ │ ├── MediaPreviewVC.h │ │ ├── MediaPreviewVC.m │ │ ├── MediaPreviewVC.xib │ │ ├── MediaPreviewVCPhone.xib │ │ ├── MediaPreviewVCPhone@2x.xib │ │ ├── ObjCellView.h │ │ ├── ObjCellView.mm │ │ ├── ObjCellView.xib │ │ ├── ObjCellViewPhone.xib │ │ ├── OnBoardVC.h │ │ ├── OnBoardVC.m │ │ ├── OnBoardVC.xib │ │ ├── OnBoardVCPhone.xib │ │ ├── OnBoardVCPhone@2x.xib │ │ ├── OnBoarding │ │ ├── BeginView.xib │ │ ├── BeginViewPhone.xib │ │ ├── BeginViewPhone@2x.xib │ │ ├── OnBoardVC.h │ │ ├── OnBoardVC.m │ │ ├── OnBoardVC.xib │ │ ├── OnBoardVCPhone.xib │ │ ├── OnBoardVCPhone@2x.xib │ │ ├── StepView.h │ │ ├── StepView.m │ │ └── StepView.xib │ │ ├── PopUpViewController.h │ │ ├── PopUpViewController.mm │ │ ├── PopUpViewController.xib │ │ ├── RenderingViewController.h │ │ ├── RenderingViewController.mm │ │ ├── RenderingViewController.xib │ │ ├── RenderingViewControllerPhone.xib │ │ ├── RenderingViewControllerPhone@2x.xib │ │ ├── ScaleViewController.h │ │ ├── ScaleViewController.m │ │ ├── ScaleViewController.xib │ │ ├── SceneSelectionEnteredView.h │ │ ├── SceneSelectionEnteredView.m │ │ ├── SceneSelectionEnteredView.xib │ │ ├── SceneSelectionFrameCell 2.h │ │ ├── SceneSelectionFrameCell 2.m │ │ ├── SceneSelectionFrameCell 2.xib │ │ ├── SceneSelectionFrameCell.h │ │ ├── SceneSelectionFrameCell.mm │ │ ├── SceneSelectionFrameCell.xib │ │ ├── SegmentCell.h │ │ ├── SegmentCell.m │ │ ├── SegmentCell.xib │ │ ├── SliderPropCell.h │ │ ├── SliderPropCell.mm │ │ ├── SliderPropCell.xib │ │ ├── StepView.h │ │ ├── StepView.m │ │ ├── StepView.xib │ │ ├── SwitchPropCell.h │ │ ├── SwitchPropCell.mm │ │ ├── SwitchPropCell.xib │ │ ├── TableViewCell.h │ │ ├── TableViewCell.m │ │ ├── TableViewCell.xib │ │ ├── TextColorPicker.h │ │ ├── TextColorPicker.mm │ │ ├── TextColorPicker.xib │ │ ├── TextFrameCell.h │ │ ├── TextFrameCell.m │ │ ├── TextFrameCell.xib │ │ ├── TexturePropCell.h │ │ ├── TexturePropCell.m │ │ └── TexturePropCell.xib ├── vi.lproj │ └── Localizable.strings └── zh-Hans.lproj │ └── Localizable.strings ├── Iyan3Dcopy-Info.plist ├── Iyan3dEngineFiles ├── BoneLimitsHelper.cpp ├── CameraViewHelper.cpp ├── ConversionHelper.cpp ├── FileHelper.cpp ├── HeaderFiles │ ├── ActionKey.h │ ├── BoneLimits.h │ ├── BoneLimitsHelper.h │ ├── CameraViewHelper.h │ ├── Constants.h │ ├── ConversionHelper.h │ ├── FileHelper.h │ ├── KeyHelper.h │ ├── MaterialProperty.h │ ├── MathHelper.h │ ├── MeshRW.h │ ├── PhysicsHelper.h │ ├── RenderHelper.h │ ├── RigKey.h │ ├── SGAction.h │ ├── SGActionManager.h │ ├── SGAnimationManager.h │ ├── SGEditorScene.h │ ├── SGJoint.h │ ├── SGMovementManager.h │ ├── SGNode.h │ ├── SGPositionKey.h │ ├── SGRotationKey.h │ ├── SGScaleKey.h │ ├── SGSceneLoader.h │ ├── SGSceneUpdater.h │ ├── SGSceneWriter.h │ ├── SGSelectionManager.h │ ├── SGVisibilityKey.h │ ├── SceneHelper.h │ ├── ShaderManager.h │ ├── ShaderParamOrder.h │ ├── autolink.h │ ├── config.h │ ├── exportSGR.h │ ├── features.h │ ├── forwards.h │ ├── json_internalarray.inl │ ├── json_internalmap.inl │ └── json_valueiterator.inl ├── KeyHelper.cpp ├── MaterialProperty.cpp ├── MathHelper.cpp ├── MeshRW.cpp ├── PhysicsHelper.cpp ├── RenderHelper.cpp ├── SGAction.cpp ├── SGActionManager.cpp ├── SGAnimationManager.cpp ├── SGCloudRenderingHelper.cpp ├── SGEditorScene.cpp ├── SGJoint.cpp ├── SGMovementManager.cpp ├── SGNode.cpp ├── SGSceneLoader.cpp ├── SGSceneUpdater.cpp ├── SGSceneWriter.cpp ├── SGSelectionManager.cpp ├── SceneHelper.cpp ├── ShaderManager.cpp ├── bullet3 │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── VERSION.txt │ └── src │ │ ├── BulletCollision │ │ ├── BroadphaseCollision │ │ │ ├── btAxisSweep3.cpp │ │ │ ├── btAxisSweep3.h │ │ │ ├── btBroadphaseInterface.h │ │ │ ├── btBroadphaseProxy.cpp │ │ │ ├── btBroadphaseProxy.h │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ ├── btCollisionAlgorithm.h │ │ │ ├── btDbvt.cpp │ │ │ ├── btDbvt.h │ │ │ ├── btDbvtBroadphase.cpp │ │ │ ├── btDbvtBroadphase.h │ │ │ ├── btDispatcher.cpp │ │ │ ├── btDispatcher.h │ │ │ ├── btMultiSapBroadphase.cpp │ │ │ ├── btMultiSapBroadphase.h │ │ │ ├── btOverlappingPairCache.cpp │ │ │ ├── btOverlappingPairCache.h │ │ │ ├── btOverlappingPairCallback.h │ │ │ ├── btQuantizedBvh.cpp │ │ │ ├── btQuantizedBvh.h │ │ │ ├── btSimpleBroadphase.cpp │ │ │ └── btSimpleBroadphase.h │ │ ├── CollisionDispatch │ │ │ ├── SphereTriangleDetector.cpp │ │ │ ├── SphereTriangleDetector.h │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ ├── btBoxBoxDetector.cpp │ │ │ ├── btBoxBoxDetector.h │ │ │ ├── btCollisionConfiguration.h │ │ │ ├── btCollisionCreateFunc.h │ │ │ ├── btCollisionDispatcher.cpp │ │ │ ├── btCollisionDispatcher.h │ │ │ ├── btCollisionObject.cpp │ │ │ ├── btCollisionObject.h │ │ │ ├── btCollisionObjectWrapper.h │ │ │ ├── btCollisionWorld.cpp │ │ │ ├── btCollisionWorld.h │ │ │ ├── btCollisionWorldImporter.cpp │ │ │ ├── btCollisionWorldImporter.h │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ ├── btCompoundCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCompoundCollisionAlgorithm.h │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ ├── btGhostObject.cpp │ │ │ ├── btGhostObject.h │ │ │ ├── btHashedSimplePairCache.cpp │ │ │ ├── btHashedSimplePairCache.h │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ ├── btInternalEdgeUtility.h │ │ │ ├── btManifoldResult.cpp │ │ │ ├── btManifoldResult.h │ │ │ ├── btSimulationIslandManager.cpp │ │ │ ├── btSimulationIslandManager.h │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ ├── btUnionFind.cpp │ │ │ └── btUnionFind.h │ │ ├── CollisionShapes │ │ │ ├── btBox2dShape.cpp │ │ │ ├── btBox2dShape.h │ │ │ ├── btBoxShape.cpp │ │ │ ├── btBoxShape.h │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ ├── btCapsuleShape.cpp │ │ │ ├── btCapsuleShape.h │ │ │ ├── btCollisionMargin.h │ │ │ ├── btCollisionShape.cpp │ │ │ ├── btCollisionShape.h │ │ │ ├── btCompoundShape.cpp │ │ │ ├── btCompoundShape.h │ │ │ ├── btConcaveShape.cpp │ │ │ ├── btConcaveShape.h │ │ │ ├── btConeShape.cpp │ │ │ ├── btConeShape.h │ │ │ ├── btConvex2dShape.cpp │ │ │ ├── btConvex2dShape.h │ │ │ ├── btConvexHullShape.cpp │ │ │ ├── btConvexHullShape.h │ │ │ ├── btConvexInternalShape.cpp │ │ │ ├── btConvexInternalShape.h │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ ├── btConvexPointCloudShape.h │ │ │ ├── btConvexPolyhedron.cpp │ │ │ ├── btConvexPolyhedron.h │ │ │ ├── btConvexShape.cpp │ │ │ ├── btConvexShape.h │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ ├── btCylinderShape.cpp │ │ │ ├── btCylinderShape.h │ │ │ ├── btEmptyShape.cpp │ │ │ ├── btEmptyShape.h │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ ├── btMaterial.h │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ ├── btMinkowskiSumShape.h │ │ │ ├── btMultiSphereShape.cpp │ │ │ ├── btMultiSphereShape.h │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ ├── btOptimizedBvh.cpp │ │ │ ├── btOptimizedBvh.h │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ ├── btPolyhedralConvexShape.h │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ ├── btShapeHull.cpp │ │ │ ├── btShapeHull.h │ │ │ ├── btSphereShape.cpp │ │ │ ├── btSphereShape.h │ │ │ ├── btStaticPlaneShape.cpp │ │ │ ├── btStaticPlaneShape.h │ │ │ ├── btStridingMeshInterface.cpp │ │ │ ├── btStridingMeshInterface.h │ │ │ ├── btTetrahedronShape.cpp │ │ │ ├── btTetrahedronShape.h │ │ │ ├── btTriangleBuffer.cpp │ │ │ ├── btTriangleBuffer.h │ │ │ ├── btTriangleCallback.cpp │ │ │ ├── btTriangleCallback.h │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ ├── btTriangleInfoMap.h │ │ │ ├── btTriangleMesh.cpp │ │ │ ├── btTriangleMesh.h │ │ │ ├── btTriangleMeshShape.cpp │ │ │ ├── btTriangleMeshShape.h │ │ │ ├── btTriangleShape.h │ │ │ ├── btUniformScalingShape.cpp │ │ │ └── btUniformScalingShape.h │ │ ├── Gimpact │ │ │ ├── btBoxCollision.h │ │ │ ├── btClipPolygon.h │ │ │ ├── btCompoundFromGimpact.h │ │ │ ├── btContactProcessing.cpp │ │ │ ├── btContactProcessing.h │ │ │ ├── btGImpactBvh.cpp │ │ │ ├── btGImpactBvh.h │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ ├── btGImpactMassUtil.h │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ ├── btGImpactShape.cpp │ │ │ ├── btGImpactShape.h │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ ├── btGenericPoolAllocator.h │ │ │ ├── btGeometryOperations.h │ │ │ ├── btQuantization.h │ │ │ ├── btTriangleShapeEx.cpp │ │ │ ├── btTriangleShapeEx.h │ │ │ ├── gim_array.h │ │ │ ├── gim_basic_geometry_operations.h │ │ │ ├── gim_bitset.h │ │ │ ├── gim_box_collision.h │ │ │ ├── gim_box_set.cpp │ │ │ ├── gim_box_set.h │ │ │ ├── gim_clip_polygon.h │ │ │ ├── gim_contact.cpp │ │ │ ├── gim_contact.h │ │ │ ├── gim_geom_types.h │ │ │ ├── gim_geometry.h │ │ │ ├── gim_hash_table.h │ │ │ ├── gim_linear_math.h │ │ │ ├── gim_math.h │ │ │ ├── gim_memory.cpp │ │ │ ├── gim_memory.h │ │ │ ├── gim_radixsort.h │ │ │ ├── gim_tri_collision.cpp │ │ │ └── gim_tri_collision.h │ │ └── NarrowPhaseCollision │ │ │ ├── btComputeGjkEpaPenetration.h │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ ├── btContinuousConvexCollision.h │ │ │ ├── btConvexCast.cpp │ │ │ ├── btConvexCast.h │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ ├── btGjkCollisionDescription.h │ │ │ ├── btGjkConvexCast.cpp │ │ │ ├── btGjkConvexCast.h │ │ │ ├── btGjkEpa2.cpp │ │ │ ├── btGjkEpa2.h │ │ │ ├── btGjkEpa3.h │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ ├── btGjkPairDetector.cpp │ │ │ ├── btGjkPairDetector.h │ │ │ ├── btManifoldPoint.h │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ ├── btMprPenetration.h │ │ │ ├── btPersistentManifold.cpp │ │ │ ├── btPersistentManifold.h │ │ │ ├── btPointCollector.h │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ ├── btPolyhedralContactClipping.h │ │ │ ├── btRaycastCallback.cpp │ │ │ ├── btRaycastCallback.h │ │ │ ├── btSimplexSolverInterface.h │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ ├── btSubSimplexConvexCast.h │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ └── btVoronoiSimplexSolver.h │ │ ├── BulletDynamics │ │ ├── Character │ │ │ ├── btCharacterControllerInterface.h │ │ │ ├── btKinematicCharacterController.cpp │ │ │ └── btKinematicCharacterController.h │ │ ├── ConstraintSolver │ │ │ ├── btConeTwistConstraint.cpp │ │ │ ├── btConeTwistConstraint.h │ │ │ ├── btConstraintSolver.h │ │ │ ├── btContactConstraint.cpp │ │ │ ├── btContactConstraint.h │ │ │ ├── btContactSolverInfo.h │ │ │ ├── btFixedConstraint.cpp │ │ │ ├── btFixedConstraint.h │ │ │ ├── btGearConstraint.cpp │ │ │ ├── btGearConstraint.h │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ ├── btGeneric6DofConstraint.h │ │ │ ├── btGeneric6DofSpring2Constraint.cpp │ │ │ ├── btGeneric6DofSpring2Constraint.h │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ ├── btHinge2Constraint.cpp │ │ │ ├── btHinge2Constraint.h │ │ │ ├── btHingeConstraint.cpp │ │ │ ├── btHingeConstraint.h │ │ │ ├── btJacobianEntry.h │ │ │ ├── btNNCGConstraintSolver.cpp │ │ │ ├── btNNCGConstraintSolver.h │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ ├── btPoint2PointConstraint.h │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ ├── btSliderConstraint.cpp │ │ │ ├── btSliderConstraint.h │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ ├── btSolve2LinearConstraint.h │ │ │ ├── btSolverBody.h │ │ │ ├── btSolverConstraint.h │ │ │ ├── btTypedConstraint.cpp │ │ │ ├── btTypedConstraint.h │ │ │ ├── btUniversalConstraint.cpp │ │ │ └── btUniversalConstraint.h │ │ ├── Dynamics │ │ │ ├── btActionInterface.h │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ ├── btDynamicsWorld.h │ │ │ ├── btRigidBody.cpp │ │ │ ├── btRigidBody.h │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ └── btSimpleDynamicsWorld.h │ │ ├── Featherstone │ │ │ ├── btMultiBody.cpp │ │ │ ├── btMultiBody.h │ │ │ ├── btMultiBodyConstraint.cpp │ │ │ ├── btMultiBodyConstraint.h │ │ │ ├── btMultiBodyConstraintSolver.cpp │ │ │ ├── btMultiBodyConstraintSolver.h │ │ │ ├── btMultiBodyDynamicsWorld.cpp │ │ │ ├── btMultiBodyDynamicsWorld.h │ │ │ ├── btMultiBodyJointFeedback.h │ │ │ ├── btMultiBodyJointLimitConstraint.cpp │ │ │ ├── btMultiBodyJointLimitConstraint.h │ │ │ ├── btMultiBodyJointMotor.cpp │ │ │ ├── btMultiBodyJointMotor.h │ │ │ ├── btMultiBodyLink.h │ │ │ ├── btMultiBodyLinkCollider.h │ │ │ ├── btMultiBodyPoint2Point.cpp │ │ │ ├── btMultiBodyPoint2Point.h │ │ │ └── btMultiBodySolverConstraint.h │ │ ├── MLCPSolvers │ │ │ ├── btDantzigLCP.cpp │ │ │ ├── btDantzigLCP.h │ │ │ ├── btDantzigSolver.h │ │ │ ├── btLemkeAlgorithm.cpp │ │ │ ├── btLemkeAlgorithm.h │ │ │ ├── btLemkeSolver.h │ │ │ ├── btMLCPSolver.cpp │ │ │ ├── btMLCPSolver.h │ │ │ ├── btMLCPSolverInterface.h │ │ │ ├── btPATHSolver.h │ │ │ └── btSolveProjectedGaussSeidel.h │ │ └── Vehicle │ │ │ ├── btRaycastVehicle.cpp │ │ │ ├── btRaycastVehicle.h │ │ │ ├── btVehicleRaycaster.h │ │ │ ├── btWheelInfo.cpp │ │ │ └── btWheelInfo.h │ │ ├── BulletSoftBody │ │ ├── btDefaultSoftBodySolver.cpp │ │ ├── btDefaultSoftBodySolver.h │ │ ├── btSoftBody.cpp │ │ ├── btSoftBody.h │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ ├── btSoftBodyData.h │ │ ├── btSoftBodyHelpers.cpp │ │ ├── btSoftBodyHelpers.h │ │ ├── btSoftBodyInternals.h │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ ├── btSoftBodySolverVertexBuffer.h │ │ ├── btSoftBodySolvers.h │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ ├── btSoftRigidDynamicsWorld.h │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ └── btSparseSDF.h │ │ ├── LinearMath │ │ ├── btAabbUtil2.h │ │ ├── btAlignedAllocator.cpp │ │ ├── btAlignedAllocator.h │ │ ├── btAlignedObjectArray.h │ │ ├── btConvexHull.cpp │ │ ├── btConvexHull.h │ │ ├── btConvexHullComputer.cpp │ │ ├── btConvexHullComputer.h │ │ ├── btCpuFeatureUtility.h │ │ ├── btDefaultMotionState.h │ │ ├── btGeometryUtil.cpp │ │ ├── btGeometryUtil.h │ │ ├── btGrahamScan2dConvexHull.h │ │ ├── btHashMap.h │ │ ├── btIDebugDraw.h │ │ ├── btList.h │ │ ├── btMatrix3x3.h │ │ ├── btMatrixX.h │ │ ├── btMinMax.h │ │ ├── btMotionState.h │ │ ├── btPolarDecomposition.cpp │ │ ├── btPolarDecomposition.h │ │ ├── btPoolAllocator.h │ │ ├── btQuadWord.h │ │ ├── btQuaternion.h │ │ ├── btQuickprof.cpp │ │ ├── btQuickprof.h │ │ ├── btRandom.h │ │ ├── btScalar.h │ │ ├── btSerializer.cpp │ │ ├── btSerializer.h │ │ ├── btSpatialAlgebra.h │ │ ├── btStackAlloc.h │ │ ├── btTransform.h │ │ ├── btTransformUtil.h │ │ ├── btVector3.cpp │ │ └── btVector3.h │ │ ├── btBulletCollisionCommon.h │ │ └── btBulletDynamicsCommon.h ├── exportSGR.cpp └── json │ ├── json_batchallocator.h │ ├── json_json.h │ ├── json_reader.cpp │ ├── json_reader.h │ ├── json_value.cpp │ ├── json_value.h │ ├── json_writer.cpp │ └── json_writer.h ├── LICENSE.txt ├── README.md ├── SGEngine2 ├── Core │ ├── Material │ │ ├── MTLMaterial.h │ │ ├── MTLMaterial.mm │ │ ├── Material.cpp │ │ ├── Material.h │ │ ├── MaterialManager.cpp │ │ └── MaterialManager.h │ ├── Meshes │ │ ├── Joint.cpp │ │ ├── Joint.h │ │ ├── Mesh.cpp │ │ ├── Mesh.h │ │ ├── PlaneMeshNode.cpp │ │ ├── PlaneMeshNode.h │ │ ├── SGCircleNode.cpp │ │ ├── SGCircleNode.h │ │ ├── SkinMesh.cpp │ │ ├── SkinMesh.h │ │ └── md5.h │ ├── Nodes │ │ ├── APIData.cpp │ │ ├── APIData.h │ │ ├── AnimatedMeshNode.cpp │ │ ├── AnimatedMeshNode.h │ │ ├── CameraNode.cpp │ │ ├── CameraNode.h │ │ ├── EmptyNode.cpp │ │ ├── EmptyNode.h │ │ ├── InstanceNode.cpp │ │ ├── InstanceNode.h │ │ ├── JointNode.cpp │ │ ├── JointNode.h │ │ ├── LightNode.cpp │ │ ├── LightNode.h │ │ ├── MTLNodeData.h │ │ ├── MTLNodeData.mm │ │ ├── MeshNode.cpp │ │ ├── MeshNode.h │ │ ├── Node.cpp │ │ └── Node.h │ ├── Textures │ │ ├── MTLTexture.h │ │ ├── MTLTexture.mm │ │ └── Texture.h │ └── common │ │ ├── BoundingBox.cpp │ │ ├── BoundingBox.h │ │ ├── CollisionManager.cpp │ │ ├── CollisionManager.h │ │ ├── Frustum.cpp │ │ ├── Frustum.h │ │ ├── GLKMath │ │ ├── GLKMathTypes.h │ │ ├── GLKMatrix4.h │ │ ├── GLKQuaternion.h │ │ ├── GLKVector2.h │ │ ├── GLKVector3.h │ │ └── GLKVector4.h │ │ ├── Line3D.cpp │ │ ├── Line3D.h │ │ ├── Mat4.cpp │ │ ├── Mat4.h │ │ ├── Plane3D.cpp │ │ ├── Plane3D.h │ │ ├── Quaternion.cpp │ │ ├── Quaternion.h │ │ ├── Vector2.cpp │ │ ├── Vector2.h │ │ ├── Vector3.cpp │ │ ├── Vector3.h │ │ ├── Vector4.cpp │ │ ├── Vector4.h │ │ └── common.h ├── Loaders │ ├── SceneImporter.cpp │ └── SceneImporter.h ├── MetalHandler.h ├── MetalHandler.mm ├── RenderManager │ ├── ImageLoaderOBJC.h │ ├── ImageLoaderOBJC.mm │ ├── ImageLoaderOBJCWrapper.h │ ├── MTLNodeDataWrapper.h │ ├── MetalRenderManager.h │ ├── MetalRenderManager.mm │ ├── MetalWrapper.h │ ├── MetalWrapperForMaterial.h │ └── RenderManager.h ├── SGEngineCommon.h ├── SGEngineMTL.h ├── SceneManager │ ├── SceneManager.cpp │ └── SceneManager.h └── Utilities │ ├── Helper.cpp │ ├── Helper.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Maths.cpp │ └── Maths.h ├── assimp-master ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.sh ├── .travis.yml ├── CREDITS ├── LICENSE ├── Readme.md ├── code │ ├── .editorconfig │ ├── 3DSConverter.cpp │ ├── 3DSExporter.cpp │ ├── 3DSExporter.h │ ├── 3DSHelper.h │ ├── 3DSLoader.cpp │ ├── 3DSLoader.h │ ├── 3MFXmlTags.h │ ├── ACLoader.cpp │ ├── ACLoader.h │ ├── AMFImporter.cpp │ ├── AMFImporter.hpp │ ├── AMFImporter_Geometry.cpp │ ├── AMFImporter_Macro.hpp │ ├── AMFImporter_Material.cpp │ ├── AMFImporter_Node.hpp │ ├── AMFImporter_Postprocess.cpp │ ├── ASELoader.cpp │ ├── ASELoader.h │ ├── ASEParser.cpp │ ├── ASEParser.h │ ├── AssbinExporter.cpp │ ├── AssbinExporter.h │ ├── AssbinLoader.cpp │ ├── AssbinLoader.h │ ├── Assimp.cpp │ ├── AssimpCExport.cpp │ ├── AssxmlExporter.cpp │ ├── AssxmlExporter.h │ ├── B3DImporter.cpp │ ├── B3DImporter.h │ ├── BVHLoader.cpp │ ├── BVHLoader.h │ ├── BaseImporter.cpp │ ├── BaseImporter.h │ ├── BaseProcess.cpp │ ├── BaseProcess.h │ ├── Bitmap.cpp │ ├── Bitmap.h │ ├── BlenderBMesh.cpp │ ├── BlenderBMesh.h │ ├── BlenderDNA.cpp │ ├── BlenderDNA.h │ ├── BlenderDNA.inl │ ├── BlenderIntermediate.h │ ├── BlenderLoader.cpp │ ├── BlenderLoader.h │ ├── BlenderModifier.cpp │ ├── BlenderModifier.h │ ├── BlenderScene.cpp │ ├── BlenderScene.h │ ├── BlenderSceneGen.h │ ├── BlenderTessellator.cpp │ ├── BlenderTessellator.h │ ├── BlobIOSystem.h │ ├── ByteSwapper.h │ ├── C4DImporter.cpp │ ├── C4DImporter.h │ ├── CInterfaceIOWrapper.cpp │ ├── CInterfaceIOWrapper.h │ ├── CMakeLists.txt │ ├── COBLoader.cpp │ ├── COBLoader.h │ ├── COBScene.h │ ├── CSMLoader.cpp │ ├── CSMLoader.h │ ├── CalcTangentsProcess.cpp │ ├── CalcTangentsProcess.h │ ├── ColladaExporter.cpp │ ├── ColladaExporter.h │ ├── ColladaHelper.h │ ├── ColladaLoader.cpp │ ├── ColladaLoader.h │ ├── ColladaParser.cpp │ ├── ColladaParser.h │ ├── ComputeUVMappingProcess.cpp │ ├── ComputeUVMappingProcess.h │ ├── ConvertToLHProcess.cpp │ ├── ConvertToLHProcess.h │ ├── CreateAnimMesh.cpp │ ├── CreateAnimMesh.h │ ├── D3MFExporter.cpp │ ├── D3MFExporter.h │ ├── D3MFImporter.cpp │ ├── D3MFImporter.h │ ├── D3MFOpcPackage.cpp │ ├── D3MFOpcPackage.h │ ├── DXFHelper.h │ ├── DXFLoader.cpp │ ├── DXFLoader.h │ ├── DeboneProcess.cpp │ ├── DeboneProcess.h │ ├── DefaultIOStream.cpp │ ├── DefaultIOStream.h │ ├── DefaultIOSystem.cpp │ ├── DefaultIOSystem.h │ ├── DefaultLogger.cpp │ ├── DefaultProgressHandler.h │ ├── Defines.h │ ├── Exceptional.h │ ├── Exporter.cpp │ ├── FBXAnimation.cpp │ ├── FBXBinaryTokenizer.cpp │ ├── FBXCompileConfig.h │ ├── FBXConverter.cpp │ ├── FBXConverter.h │ ├── FBXDeformer.cpp │ ├── FBXDocument.cpp │ ├── FBXDocument.h │ ├── FBXDocumentUtil.cpp │ ├── FBXDocumentUtil.h │ ├── FBXImportSettings.h │ ├── FBXImporter.cpp │ ├── FBXImporter.h │ ├── FBXMaterial.cpp │ ├── FBXMeshGeometry.cpp │ ├── FBXMeshGeometry.h │ ├── FBXModel.cpp │ ├── FBXNodeAttribute.cpp │ ├── FBXParser.cpp │ ├── FBXParser.h │ ├── FBXProperties.cpp │ ├── FBXProperties.h │ ├── FBXTokenizer.cpp │ ├── FBXTokenizer.h │ ├── FBXUtil.cpp │ ├── FBXUtil.h │ ├── FIReader.cpp │ ├── FIReader.hpp │ ├── FileLogStream.h │ ├── FileSystemFilter.h │ ├── FindDegenerates.cpp │ ├── FindDegenerates.h │ ├── FindInstancesProcess.cpp │ ├── FindInstancesProcess.h │ ├── FindInvalidDataProcess.cpp │ ├── FindInvalidDataProcess.h │ ├── FixNormalsStep.cpp │ ├── FixNormalsStep.h │ ├── GenFaceNormalsProcess.cpp │ ├── GenFaceNormalsProcess.h │ ├── GenVertexNormalsProcess.cpp │ ├── GenVertexNormalsProcess.h │ ├── GenericProperty.h │ ├── HMPFileData.h │ ├── HMPLoader.cpp │ ├── HMPLoader.h │ ├── HalfLifeFileData.h │ ├── Hash.h │ ├── IFCBoolean.cpp │ ├── IFCCurve.cpp │ ├── IFCGeometry.cpp │ ├── IFCLoader.cpp │ ├── IFCLoader.h │ ├── IFCMaterial.cpp │ ├── IFCOpenings.cpp │ ├── IFCProfile.cpp │ ├── IFCReaderGen.h │ ├── IFCReaderGen1.cpp │ ├── IFCReaderGen2.cpp │ ├── IFCUtil.cpp │ ├── IFCUtil.h │ ├── IFF.h │ ├── IOStreamBuffer.h │ ├── IRRLoader.cpp │ ├── IRRLoader.h │ ├── IRRMeshLoader.cpp │ ├── IRRMeshLoader.h │ ├── IRRShared.cpp │ ├── IRRShared.h │ ├── Importer.cpp │ ├── Importer.h │ ├── ImporterRegistry.cpp │ ├── ImproveCacheLocality.cpp │ ├── ImproveCacheLocality.h │ ├── JoinVerticesProcess.cpp │ ├── JoinVerticesProcess.h │ ├── LWOAnimation.cpp │ ├── LWOAnimation.h │ ├── LWOBLoader.cpp │ ├── LWOFileData.h │ ├── LWOLoader.cpp │ ├── LWOLoader.h │ ├── LWOMaterial.cpp │ ├── LWSLoader.cpp │ ├── LWSLoader.h │ ├── LimitBoneWeightsProcess.cpp │ ├── LimitBoneWeightsProcess.h │ ├── LineSplitter.h │ ├── LogAux.h │ ├── MD2FileData.h │ ├── MD2Loader.cpp │ ├── MD2Loader.h │ ├── MD2NormalTable.h │ ├── MD3FileData.h │ ├── MD3Loader.cpp │ ├── MD3Loader.h │ ├── MD4FileData.h │ ├── MD5Loader.cpp │ ├── MD5Loader.h │ ├── MD5Parser.cpp │ ├── MD5Parser.h │ ├── MDCFileData.h │ ├── MDCLoader.cpp │ ├── MDCLoader.h │ ├── MDCNormalTable.h │ ├── MDLDefaultColorMap.h │ ├── MDLFileData.h │ ├── MDLLoader.cpp │ ├── MDLLoader.h │ ├── MDLMaterialLoader.cpp │ ├── MMDCpp14.h │ ├── MMDImporter.cpp │ ├── MMDImporter.h │ ├── MMDPmdParser.h │ ├── MMDPmxParser.cpp │ ├── MMDPmxParser.h │ ├── MMDVmdParser.h │ ├── MS3DLoader.cpp │ ├── MS3DLoader.h │ ├── Macros.h │ ├── MakeVerboseFormat.cpp │ ├── MakeVerboseFormat.h │ ├── MaterialSystem.cpp │ ├── MaterialSystem.h │ ├── MathFunctions.h │ ├── MemoryIOWrapper.h │ ├── NDOLoader.cpp │ ├── NDOLoader.h │ ├── NFFLoader.cpp │ ├── NFFLoader.h │ ├── OFFLoader.cpp │ ├── OFFLoader.h │ ├── ObjExporter.cpp │ ├── ObjExporter.h │ ├── ObjFileData.h │ ├── ObjFileImporter.cpp │ ├── ObjFileImporter.h │ ├── ObjFileMtlImporter.cpp │ ├── ObjFileMtlImporter.h │ ├── ObjFileParser.cpp │ ├── ObjFileParser.h │ ├── ObjTools.h │ ├── OgreBinarySerializer.cpp │ ├── OgreBinarySerializer.h │ ├── OgreImporter.cpp │ ├── OgreImporter.h │ ├── OgreMaterial.cpp │ ├── OgreParsingUtils.h │ ├── OgreStructs.cpp │ ├── OgreStructs.h │ ├── OgreXmlSerializer.cpp │ ├── OgreXmlSerializer.h │ ├── OpenGEXExporter.cpp │ ├── OpenGEXExporter.h │ ├── OpenGEXImporter.cpp │ ├── OpenGEXImporter.h │ ├── OpenGEXStructs.h │ ├── OptimizeGraph.cpp │ ├── OptimizeGraph.h │ ├── OptimizeMeshes.cpp │ ├── OptimizeMeshes.h │ ├── ParsingUtils.h │ ├── PlyExporter.cpp │ ├── PlyExporter.h │ ├── PlyLoader.cpp │ ├── PlyLoader.h │ ├── PlyParser.cpp │ ├── PlyParser.h │ ├── PolyTools.h │ ├── PostStepRegistry.cpp │ ├── PretransformVertices.cpp │ ├── PretransformVertices.h │ ├── ProcessHelper.cpp │ ├── ProcessHelper.h │ ├── Profiler.h │ ├── Q3BSPFileData.h │ ├── Q3BSPFileImporter.cpp │ ├── Q3BSPFileImporter.h │ ├── Q3BSPFileParser.cpp │ ├── Q3BSPFileParser.h │ ├── Q3BSPZipArchive.cpp │ ├── Q3BSPZipArchive.h │ ├── Q3DLoader.cpp │ ├── Q3DLoader.h │ ├── RawLoader.cpp │ ├── RawLoader.h │ ├── RemoveComments.cpp │ ├── RemoveComments.h │ ├── RemoveRedundantMaterials.cpp │ ├── RemoveRedundantMaterials.h │ ├── RemoveVCProcess.cpp │ ├── RemoveVCProcess.h │ ├── SGMLoader.cpp │ ├── SGMLoader.h │ ├── SGSpatialSort.cpp │ ├── SGSpatialSort.h │ ├── SIBImporter.cpp │ ├── SIBImporter.h │ ├── SMDLoader.cpp │ ├── SMDLoader.h │ ├── STEPFile.h │ ├── STEPFileEncoding.cpp │ ├── STEPFileEncoding.h │ ├── STEPFileReader.cpp │ ├── STEPFileReader.h │ ├── STLExporter.cpp │ ├── STLExporter.h │ ├── STLLoader.cpp │ ├── STLLoader.h │ ├── ScaleProcess.cpp │ ├── ScaleProcess.h │ ├── SceneCombiner.cpp │ ├── SceneCombiner.h │ ├── ScenePreprocessor.cpp │ ├── ScenePreprocessor.h │ ├── ScenePrivate.h │ ├── SkeletonMeshBuilder.cpp │ ├── SkeletonMeshBuilder.h │ ├── SmoothingGroups.h │ ├── SmoothingGroups.inl │ ├── SortByPTypeProcess.cpp │ ├── SortByPTypeProcess.h │ ├── SpatialSort.cpp │ ├── SpatialSort.h │ ├── SplitByBoneCountProcess.cpp │ ├── SplitByBoneCountProcess.h │ ├── SplitLargeMeshes.cpp │ ├── SplitLargeMeshes.h │ ├── StandardShapes.cpp │ ├── StandardShapes.h │ ├── StdOStreamLogStream.h │ ├── StepExporter.cpp │ ├── StepExporter.h │ ├── StreamReader.h │ ├── StreamWriter.h │ ├── StringComparison.h │ ├── StringUtils.h │ ├── Subdivision.cpp │ ├── Subdivision.h │ ├── TargetAnimation.cpp │ ├── TargetAnimation.h │ ├── TerragenLoader.cpp │ ├── TerragenLoader.h │ ├── Text3DLoader.cpp │ ├── Text3DLoader.h │ ├── TextureTransform.cpp │ ├── TextureTransform.h │ ├── TinyFormatter.h │ ├── TriangulateProcess.cpp │ ├── TriangulateProcess.h │ ├── UnrealLoader.cpp │ ├── UnrealLoader.h │ ├── ValidateDataStructure.cpp │ ├── ValidateDataStructure.h │ ├── Version.cpp │ ├── Vertex.h │ ├── VertexTriangleAdjacency.cpp │ ├── VertexTriangleAdjacency.h │ ├── Win32DebugLogStream.h │ ├── X3DExporter.cpp │ ├── X3DExporter.hpp │ ├── X3DImporter.cpp │ ├── X3DImporter.hpp │ ├── X3DImporter_Geometry2D.cpp │ ├── X3DImporter_Geometry3D.cpp │ ├── X3DImporter_Group.cpp │ ├── X3DImporter_Light.cpp │ ├── X3DImporter_Macro.hpp │ ├── X3DImporter_Metadata.cpp │ ├── X3DImporter_Networking.cpp │ ├── X3DImporter_Node.hpp │ ├── X3DImporter_Postprocess.cpp │ ├── X3DImporter_Rendering.cpp │ ├── X3DImporter_Shape.cpp │ ├── X3DImporter_Texturing.cpp │ ├── X3DVocabulary.cpp │ ├── XFileExporter.cpp │ ├── XFileExporter.h │ ├── XFileHelper.h │ ├── XFileImporter.cpp │ ├── XFileImporter.h │ ├── XFileParser.cpp │ ├── XFileParser.h │ ├── XGLLoader.cpp │ ├── XGLLoader.h │ ├── XMLTools.h │ ├── assbin_chunks.h │ ├── fast_atof.h │ ├── freeType │ │ ├── README │ │ ├── README.git │ │ └── include │ │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── ftxf86.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpic.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── pcftypes.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ └── svxf86nm.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ │ └── ft2build.h │ ├── ftgl │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Contour.cpp │ │ ├── Contour.h │ │ ├── FtglPoint.cpp │ │ ├── FtglPoint.h │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── Vectoriser.cpp │ │ └── Vectoriser.h │ ├── glTF2Asset.h │ ├── glTF2Asset.inl │ ├── glTF2AssetWriter.h │ ├── glTF2AssetWriter.inl │ ├── glTF2Exporter.cpp │ ├── glTF2Exporter.h │ ├── glTF2Importer.cpp │ ├── glTF2Importer.h │ ├── glTFAsset.h │ ├── glTFAsset.inl │ ├── glTFAssetWriter.h │ ├── glTFAssetWriter.inl │ ├── glTFExporter.cpp │ ├── glTFExporter.h │ ├── glTFImporter.cpp │ ├── glTFImporter.h │ ├── iGLU-1.0.0 │ │ ├── Makefile │ │ ├── README │ │ ├── configs │ │ │ ├── darwin │ │ │ ├── darwin-iphone │ │ │ └── default │ │ ├── include │ │ │ ├── glu.h │ │ │ └── gluos.h │ │ ├── libtess │ │ │ ├── README │ │ │ ├── alg-outline │ │ │ ├── dict-list.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── geom.c │ │ │ ├── geom.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 │ │ └── libutil │ │ │ ├── error.c │ │ │ ├── glue.c │ │ │ ├── gluint.h │ │ │ ├── project.c │ │ │ └── registry.c │ ├── irrXMLWrapper.h │ ├── makefile.mingw │ ├── qnan.h │ ├── res │ │ ├── assimp.rc │ │ └── resource.h │ └── scene.cpp ├── contrib │ ├── CMakeLists.txt │ ├── ConvertUTF │ │ ├── ConvertUTF.c │ │ ├── ConvertUTF.h │ │ └── readme.txt │ ├── Open3DGC │ │ ├── o3dgcAdjacencyInfo.h │ │ ├── o3dgcArithmeticCodec.cpp │ │ ├── o3dgcArithmeticCodec.h │ │ ├── o3dgcBinaryStream.h │ │ ├── o3dgcCommon.h │ │ ├── o3dgcDVEncodeParams.h │ │ ├── o3dgcDynamicVector.h │ │ ├── o3dgcDynamicVectorDecoder.cpp │ │ ├── o3dgcDynamicVectorDecoder.h │ │ ├── o3dgcDynamicVectorEncoder.cpp │ │ ├── o3dgcDynamicVectorEncoder.h │ │ ├── o3dgcFIFO.h │ │ ├── o3dgcIndexedFaceSet.h │ │ ├── o3dgcIndexedFaceSet.inl │ │ ├── o3dgcSC3DMCDecoder.h │ │ ├── o3dgcSC3DMCDecoder.inl │ │ ├── o3dgcSC3DMCEncodeParams.h │ │ ├── o3dgcSC3DMCEncoder.h │ │ ├── o3dgcSC3DMCEncoder.inl │ │ ├── o3dgcTimer.h │ │ ├── o3dgcTools.cpp │ │ ├── o3dgcTriangleFans.cpp │ │ ├── o3dgcTriangleFans.h │ │ ├── o3dgcTriangleListDecoder.h │ │ ├── o3dgcTriangleListDecoder.inl │ │ ├── o3dgcTriangleListEncoder.h │ │ ├── o3dgcTriangleListEncoder.inl │ │ ├── o3dgcVector.h │ │ └── o3dgcVector.inl │ ├── android-cmake │ │ ├── AndroidNdkGdb.cmake │ │ ├── AndroidNdkModules.cmake │ │ ├── README.md │ │ ├── android.toolchain.cmake │ │ └── ndk_links.md │ ├── clipper │ │ ├── License.txt │ │ ├── clipper.cpp │ │ └── clipper.hpp │ ├── gtest │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── AdvancedGuide.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── FAQ.md │ │ │ ├── Primer.md │ │ │ ├── PumpManual.md │ │ │ ├── Samples.md │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ ├── V1_5_Documentation.md │ │ │ ├── V1_5_FAQ.md │ │ │ ├── V1_5_Primer.md │ │ │ ├── V1_5_PumpManual.md │ │ │ ├── V1_5_XcodeGuide.md │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ ├── V1_6_Documentation.md │ │ │ ├── V1_6_FAQ.md │ │ │ ├── V1_6_Primer.md │ │ │ ├── V1_6_PumpManual.md │ │ │ ├── V1_6_Samples.md │ │ │ ├── V1_6_XcodeGuide.md │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ ├── V1_7_Documentation.md │ │ │ ├── V1_7_FAQ.md │ │ │ ├── V1_7_Primer.md │ │ │ ├── V1_7_PumpManual.md │ │ │ ├── V1_7_Samples.md │ │ │ ├── V1_7_XcodeGuide.md │ │ │ └── XcodeGuide.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ └── gtest.m4 │ │ ├── make │ │ │ └── Makefile │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── common.py │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config.in │ │ │ ├── pump.py │ │ │ ├── release_docs.py │ │ │ ├── test │ │ │ │ └── Makefile │ │ │ ├── upload.py │ │ │ └── upload_gtest.py │ │ ├── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ ├── test │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ ├── gtest-death-test_test.cc │ │ │ ├── gtest-filepath_test.cc │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ ├── gtest-listener_test.cc │ │ │ ├── gtest-message_test.cc │ │ │ ├── gtest-options_test.cc │ │ │ ├── gtest-param-test2_test.cc │ │ │ ├── gtest-param-test_test.cc │ │ │ ├── gtest-param-test_test.h │ │ │ ├── gtest-port_test.cc │ │ │ ├── gtest-printers_test.cc │ │ │ ├── gtest-test-part_test.cc │ │ │ ├── gtest-tuple_test.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ ├── gtest_color_test.py │ │ │ ├── gtest_color_test_.cc │ │ │ ├── gtest_env_var_test.py │ │ │ ├── gtest_env_var_test_.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_filter_unittest.py │ │ │ ├── gtest_filter_unittest_.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_list_tests_unittest.py │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_output_test.py │ │ │ ├── gtest_output_test_.cc │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_premature_exit_test.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_shuffle_test.py │ │ │ ├── gtest_shuffle_test_.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ ├── gtest_uninitialized_test.py │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ │ └── xcode │ │ │ ├── Config │ │ │ ├── DebugProject.xcconfig │ │ │ ├── FrameworkTarget.xcconfig │ │ │ ├── General.xcconfig │ │ │ ├── ReleaseProject.xcconfig │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ └── TestTarget.xcconfig │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── Samples │ │ │ └── FrameworkSample │ │ │ │ ├── Info.plist │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── runtests.sh │ │ │ │ ├── widget.cc │ │ │ │ ├── widget.h │ │ │ │ └── widget_test.cc │ │ │ ├── Scripts │ │ │ ├── runtests.sh │ │ │ └── versiongenerate.py │ │ │ └── gtest.xcodeproj │ │ │ └── project.pbxproj │ ├── irrXML │ │ ├── CMakeLists.txt │ │ ├── CXMLReaderImpl.h │ │ ├── heapsort.h │ │ ├── irrArray.h │ │ ├── irrString.h │ │ ├── irrTypes.h │ │ ├── irrXML.cpp │ │ └── irrXML.h │ ├── irrXML_note.txt │ ├── openddlparser │ │ ├── CMakeLists.txt │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── code │ │ │ ├── DDLNode.cpp │ │ │ ├── OpenDDLCommon.cpp │ │ │ ├── OpenDDLExport.cpp │ │ │ ├── OpenDDLParser.cpp │ │ │ ├── OpenDDLStream.cpp │ │ │ └── Value.cpp │ │ └── include │ │ │ └── openddlparser │ │ │ ├── DDLNode.h │ │ │ ├── OpenDDLCommon.h │ │ │ ├── OpenDDLExport.h │ │ │ ├── OpenDDLParser.h │ │ │ ├── OpenDDLParserUtils.h │ │ │ ├── OpenDDLStream.h │ │ │ └── Value.h │ ├── poly2tri │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README │ │ └── poly2tri │ │ │ ├── common │ │ │ ├── shapes.cc │ │ │ ├── shapes.h │ │ │ └── utils.h │ │ │ ├── poly2tri.h │ │ │ └── sweep │ │ │ ├── advancing_front.cc │ │ │ ├── advancing_front.h │ │ │ ├── cdt.cc │ │ │ ├── cdt.h │ │ │ ├── sweep.cc │ │ │ ├── sweep.h │ │ │ ├── sweep_context.cc │ │ │ └── sweep_context.h │ ├── poly2tri_patch.txt │ ├── rapidjson │ │ ├── include │ │ │ └── rapidjson │ │ │ │ ├── allocators.h │ │ │ │ ├── document.h │ │ │ │ ├── encodedstream.h │ │ │ │ ├── encodings.h │ │ │ │ ├── error │ │ │ │ ├── en.h │ │ │ │ └── error.h │ │ │ │ ├── filereadstream.h │ │ │ │ ├── filewritestream.h │ │ │ │ ├── fwd.h │ │ │ │ ├── internal │ │ │ │ ├── biginteger.h │ │ │ │ ├── diyfp.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── ieee754.h │ │ │ │ ├── itoa.h │ │ │ │ ├── meta.h │ │ │ │ ├── pow10.h │ │ │ │ ├── regex.h │ │ │ │ ├── stack.h │ │ │ │ ├── strfunc.h │ │ │ │ ├── strtod.h │ │ │ │ └── swap.h │ │ │ │ ├── istreamwrapper.h │ │ │ │ ├── memorybuffer.h │ │ │ │ ├── memorystream.h │ │ │ │ ├── msinttypes │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ │ │ ├── ostreamwrapper.h │ │ │ │ ├── pointer.h │ │ │ │ ├── prettywriter.h │ │ │ │ ├── rapidjson.h │ │ │ │ ├── reader.h │ │ │ │ ├── schema.h │ │ │ │ ├── stream.h │ │ │ │ ├── stringbuffer.h │ │ │ │ └── writer.h │ │ ├── license.txt │ │ └── readme.md │ ├── unzip │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── unzip.c │ │ └── unzip.h │ ├── utf8cpp │ │ ├── doc │ │ │ ├── ReleaseNotes │ │ │ └── utf8cpp.html │ │ └── source │ │ │ ├── utf8.h │ │ │ └── utf8 │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ └── unchecked.h │ ├── zip │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── UNLICENSE │ │ ├── src │ │ │ ├── miniz.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ └── test.c │ │ └── zip.png │ ├── zlib │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── win32 │ │ │ ├── DLL_FAQ.txt │ │ │ ├── Makefile.bor │ │ │ ├── Makefile.gcc │ │ │ ├── Makefile.msc │ │ │ ├── README-WIN32.txt │ │ │ ├── VisualC.txt │ │ │ ├── zlib.def │ │ │ └── zlib1.rc │ │ ├── zconf.h.cmakein │ │ ├── zconf.h.in │ │ ├── zconf.h.included │ │ ├── zlib.h │ │ ├── zlib.pc.cmakein │ │ ├── zutil.c │ │ └── zutil.h │ └── zlib_note.txt ├── doc │ ├── AssimpCmdDoc_Html │ │ ├── AssimpCmdDoc.chm │ │ └── dragonsplash.png │ ├── AssimpDoc_Html │ │ ├── AnimationOverview.png │ │ ├── AnimationOverview.svg │ │ ├── AssimpDoc.chm │ │ └── dragonsplash.png │ ├── Doxyfile │ ├── Doxyfile_Cmd │ ├── Preamble.txt │ ├── datastructure.xml │ ├── dox.h │ └── dox_cmd.h ├── include │ └── assimp │ │ ├── .editorconfig │ │ ├── Compiler │ │ ├── poppack1.h │ │ ├── pstdint.h │ │ └── pushpack1.h │ │ ├── DefaultIOStream.h │ │ ├── DefaultIOSystem.h │ │ ├── DefaultLogger.hpp │ │ ├── Defines.h │ │ ├── Exporter.hpp │ │ ├── IOStream.hpp │ │ ├── IOSystem.hpp │ │ ├── Importer.hpp │ │ ├── LogStream.hpp │ │ ├── Logger.hpp │ │ ├── NullLogger.hpp │ │ ├── ProgressHandler.hpp │ │ ├── SceneCombiner.h │ │ ├── ai_assert.h │ │ ├── anim.h │ │ ├── camera.h │ │ ├── cexport.h │ │ ├── cfileio.h │ │ ├── cimport.h │ │ ├── color4.h │ │ ├── color4.inl │ │ ├── config.h.in │ │ ├── defs.h │ │ ├── importerdesc.h │ │ ├── light.h │ │ ├── material.h │ │ ├── material.inl │ │ ├── matrix3x3.h │ │ ├── matrix3x3.inl │ │ ├── matrix4x4.h │ │ ├── matrix4x4.inl │ │ ├── mesh.h │ │ ├── metadata.h │ │ ├── port │ │ └── AndroidJNI │ │ │ └── AndroidJNIIOSystem.h │ │ ├── postprocess.h │ │ ├── quaternion.h │ │ ├── quaternion.inl │ │ ├── scene.h │ │ ├── texture.h │ │ ├── types.h │ │ ├── vector2.h │ │ ├── vector2.inl │ │ ├── vector3.h │ │ ├── vector3.inl │ │ └── version.h └── workspaces │ ├── Android-NDK │ └── jni │ │ ├── Android.mk │ │ └── Application.mk │ ├── xcode3 │ ├── assimp.xcodeproj │ │ └── project.pbxproj │ └── info.txt │ └── xcode6 │ └── Assimp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── Assimp.xcscmblueprint │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── assimp.xcscheme ├── freetype2 ├── include │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── ftxf86.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdriver.h │ │ │ ├── ftgloadr.h │ │ │ ├── ftmemory.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpic.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── internal.h │ │ │ ├── pcftypes.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ ├── svwinfnt.h │ │ │ │ └── svxf86nm.h │ │ │ ├── sfnt.h │ │ │ ├── t1types.h │ │ │ └── tttypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ ├── tttags.h │ │ └── ttunpat.h │ └── ft2build.h └── src │ ├── autofit │ ├── Jamfile │ ├── afangles.c │ ├── afangles.h │ ├── afcjk.c │ ├── afcjk.h │ ├── afdummy.c │ ├── afdummy.h │ ├── aferrors.h │ ├── afglobal.c │ ├── afglobal.h │ ├── afhints.c │ ├── afhints.h │ ├── afindic.c │ ├── afindic.h │ ├── aflatin.c │ ├── aflatin.h │ ├── aflatin2.c │ ├── aflatin2.h │ ├── afloader.c │ ├── afloader.h │ ├── afmodule.c │ ├── afmodule.h │ ├── afpic.c │ ├── afpic.h │ ├── aftypes.h │ ├── afwarp.c │ ├── afwarp.h │ ├── autofit.c │ ├── module.mk │ └── rules.mk │ ├── base │ ├── basepic.c │ ├── basepic.h │ ├── ftadvanc.c │ ├── ftapi.c │ ├── ftbase.c │ ├── ftbase.h │ ├── ftbbox.c │ ├── ftbitmap.c │ ├── ftcalc.c │ ├── ftdbgmem.c │ ├── ftdebug.c │ ├── ftgloadr.c │ ├── ftglyph.c │ ├── ftinit.c │ ├── ftobjs.c │ ├── ftoutln.c │ ├── ftpic.c │ ├── ftrfork.c │ ├── ftsnames.c │ ├── ftstream.c │ ├── ftstroke.c │ ├── ftsynth.c │ ├── ftsystem.c │ ├── fttrigon.c │ └── ftutil.c │ ├── cff │ ├── Jamfile │ ├── cff.c │ ├── cffcmap.c │ ├── cffcmap.h │ ├── cffdrivr.c │ ├── cffdrivr.h │ ├── cfferrs.h │ ├── cffgload.c │ ├── cffgload.h │ ├── cffload.c │ ├── cffload.h │ ├── cffobjs.c │ ├── cffobjs.h │ ├── cffparse.c │ ├── cffparse.h │ ├── cffpic.c │ ├── cffpic.h │ ├── cfftoken.h │ ├── cfftypes.h │ ├── module.mk │ └── rules.mk │ ├── pshinter │ ├── Jamfile │ ├── module.mk │ ├── pshalgo.c │ ├── pshalgo.h │ ├── pshglob.c │ ├── pshglob.h │ ├── pshinter.c │ ├── pshmod.c │ ├── pshmod.h │ ├── pshnterr.h │ ├── pshpic.c │ ├── pshpic.h │ ├── pshrec.c │ ├── pshrec.h │ └── rules.mk │ ├── psnames │ ├── Jamfile │ ├── module.mk │ ├── psmodule.c │ ├── psmodule.h │ ├── psnamerr.h │ ├── psnames.c │ ├── pspic.c │ ├── pspic.h │ ├── pstables.h │ └── rules.mk │ ├── raster │ ├── Jamfile │ ├── ftmisc.h │ ├── ftraster.c │ ├── ftraster.h │ ├── ftrend1.c │ ├── ftrend1.h │ ├── module.mk │ ├── raster.c │ ├── rasterrs.h │ ├── rastpic.c │ ├── rastpic.h │ └── rules.mk │ ├── sfnt │ ├── Jamfile │ ├── module.mk │ ├── rules.mk │ ├── sfdriver.c │ ├── sfdriver.h │ ├── sferrors.h │ ├── sfnt.c │ ├── sfntpic.c │ ├── sfntpic.h │ ├── sfobjs.c │ ├── sfobjs.h │ ├── ttbdf.c │ ├── ttbdf.h │ ├── ttcmap.c │ ├── ttcmap.h │ ├── ttcmapc.h │ ├── ttkern.c │ ├── ttkern.h │ ├── ttload.c │ ├── ttload.h │ ├── ttmtx.c │ ├── ttmtx.h │ ├── ttpost.c │ ├── ttpost.h │ ├── ttsbit.c │ ├── ttsbit.h │ └── ttsbit0.c │ ├── smooth │ ├── Jamfile │ ├── ftgrays.c │ ├── ftgrays.h │ ├── ftsmerrs.h │ ├── ftsmooth.c │ ├── ftsmooth.h │ ├── ftspic.c │ ├── ftspic.h │ ├── module.mk │ ├── rules.mk │ └── smooth.c │ └── truetype │ ├── Jamfile │ ├── module.mk │ ├── rules.mk │ ├── truetype.c │ ├── ttdriver.c │ ├── ttdriver.h │ ├── tterrors.h │ ├── ttgload.c │ ├── ttgload.h │ ├── ttgxvar.c │ ├── ttgxvar.h │ ├── ttinterp.c │ ├── ttinterp.h │ ├── ttobjs.c │ ├── ttobjs.h │ ├── ttpic.c │ ├── ttpic.h │ ├── ttpload.c │ └── ttpload.h ├── privacy.md └── screenshots ├── README.md ├── screen1.jpeg └── screen2.jpeg /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /FrameWorks/libassimp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/FrameWorks/libassimp.a -------------------------------------------------------------------------------- /FrameWorks/libassimp_sim.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/FrameWorks/libassimp_sim.a -------------------------------------------------------------------------------- /Iyan3D.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Iyan3D/3rdParty/FPPopOver/ARCMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/FPPopOver/ARCMacros.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/CIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/CIndexBuffer.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/CMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/CMeshBuffer.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/EAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/EAttributes.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/EDeviceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/EDeviceTypes.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/EDriverTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/EDriverTypes.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/EShaderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/EShaderTypes.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IAttributes.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IFileArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IFileArchive.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IFileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IFileList.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IFileSystem.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIButton.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUICheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUICheckBox.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIComboBox.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIEditBox.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIElement.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIFont.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIImage.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIListBox.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUISkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUISkin.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUISpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUISpinBox.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUITable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUITable.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIToolbar.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUITreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUITreeView.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IGUIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IGUIWindow.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IImage.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IImageLoader.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IImageWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IImageWriter.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IIndexBuffer.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/ILogger.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IMesh.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IMeshBuffer.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IMeshCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IMeshCache.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IMeshLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IMeshLoader.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IMeshWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IMeshWriter.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IOSOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IOSOperator.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IQ3LevelMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IQ3LevelMesh.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IQ3Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IQ3Shader.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IRandomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IRandomizer.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IReadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IReadFile.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/ISceneLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/ISceneLoader.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/ISceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/ISceneNode.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/ISkinnedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/ISkinnedMesh.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/ITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/ITexture.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/ITimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/ITimer.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IVideoDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IVideoDriver.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IWriteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IWriteFile.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IXMLReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IXMLReader.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/IXMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/IXMLWriter.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/Keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/Keycodes.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/S3DVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/S3DVertex.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SColor.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SKeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SKeyMap.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SLight.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SMaterial.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SMesh.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SMeshBuffer.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SParticle.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SVertexIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SVertexIndex.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/SViewFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/SViewFrustum.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/aabbox3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/aabbox3d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/coreutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/coreutil.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/dimension2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/dimension2d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/driverChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/driverChoice.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/fast_atof.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/heapsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/heapsort.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrAllocator.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrArray.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrList.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrMap.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrMath.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrString.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrTypes.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrXML.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrlicht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrlicht.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrpack.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/irrunpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/irrunpack.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/leakHunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/leakHunter.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/line2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/line2d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/line3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/line3d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/matrix4.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/path.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/plane3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/plane3d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/position2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/position2d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/quaternion.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/rect.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/triangle3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/triangle3d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/vector2d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/include/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/include/vector3d.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/ZipArchive.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/ZipArchive.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/ZipArchive.mm -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/crypt.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/ioapi.c -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/ioapi.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/mztools.c -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/mztools.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/unzip.c -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/unzip.h -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/zip.c -------------------------------------------------------------------------------- /Iyan3D/3rdParty/zip/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/3rdParty/zip/minizip/zip.h -------------------------------------------------------------------------------- /Iyan3D/AssetFrameCellPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/AssetFrameCellPhone.xib -------------------------------------------------------------------------------- /Iyan3D/Core/AnimationItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/AnimationItem.h -------------------------------------------------------------------------------- /Iyan3D/Core/AnimationItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/AnimationItem.m -------------------------------------------------------------------------------- /Iyan3D/Core/AssetItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/AssetItem.h -------------------------------------------------------------------------------- /Iyan3D/Core/AssetItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/AssetItem.m -------------------------------------------------------------------------------- /Iyan3D/Core/CacheSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/CacheSystem.h -------------------------------------------------------------------------------- /Iyan3D/Core/CacheSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/CacheSystem.m -------------------------------------------------------------------------------- /Iyan3D/Core/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/Options.h -------------------------------------------------------------------------------- /Iyan3D/Core/Options.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/Options.m -------------------------------------------------------------------------------- /Iyan3D/Core/SceneItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/SceneItem.h -------------------------------------------------------------------------------- /Iyan3D/Core/SceneItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/SceneItem.m -------------------------------------------------------------------------------- /Iyan3D/Core/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/Utility.h -------------------------------------------------------------------------------- /Iyan3D/Core/Utility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Core/Utility.m -------------------------------------------------------------------------------- /Iyan3D/Helpers/AppHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Helpers/AppHelper.h -------------------------------------------------------------------------------- /Iyan3D/Helpers/AppHelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Helpers/AppHelper.mm -------------------------------------------------------------------------------- /Iyan3D/Helpers/RenderViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Helpers/RenderViewManager.h -------------------------------------------------------------------------------- /Iyan3D/Helpers/RenderViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Helpers/RenderViewManager.mm -------------------------------------------------------------------------------- /Iyan3D/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Iyan3D/ImportImageNewPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ImportImageNewPhone.xib -------------------------------------------------------------------------------- /Iyan3D/Iyan3D-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Iyan3D-Info.plist -------------------------------------------------------------------------------- /Iyan3D/Iyan3D-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Iyan3D-Prefix.pch -------------------------------------------------------------------------------- /Iyan3D/ObjSidePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ObjSidePanel.h -------------------------------------------------------------------------------- /Iyan3D/ObjSidePanel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ObjSidePanel.mm -------------------------------------------------------------------------------- /Iyan3D/ObjSidePanel.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ObjSidePanel.xib -------------------------------------------------------------------------------- /Iyan3D/ObjSidePanelPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ObjSidePanelPhone.xib -------------------------------------------------------------------------------- /Iyan3D/PopUpViewControllerPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/PopUpViewControllerPhone.xib -------------------------------------------------------------------------------- /Iyan3D/RETrimControl.bundle/Inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/RETrimControl.bundle/Inner.png -------------------------------------------------------------------------------- /Iyan3D/RETrimControl.bundle/Outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/RETrimControl.bundle/Outer.png -------------------------------------------------------------------------------- /Iyan3D/RETrimControl.bundle/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/RETrimControl.bundle/Slider.png -------------------------------------------------------------------------------- /Iyan3D/RETrimControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/RETrimControl.h -------------------------------------------------------------------------------- /Iyan3D/RETrimControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/RETrimControl.m -------------------------------------------------------------------------------- /Iyan3D/RETrimPopover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/RETrimPopover.h -------------------------------------------------------------------------------- /Iyan3D/RETrimPopover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/RETrimPopover.m -------------------------------------------------------------------------------- /Iyan3D/Resources/images/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/images/alpha.png -------------------------------------------------------------------------------- /Iyan3D/Resources/images/dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/images/dummy.png -------------------------------------------------------------------------------- /Iyan3D/Resources/images/envmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/images/envmap.png -------------------------------------------------------------------------------- /Iyan3D/Resources/images/randNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/images/randNoise.png -------------------------------------------------------------------------------- /Iyan3D/Resources/images/round83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/images/round83.png -------------------------------------------------------------------------------- /Iyan3D/Resources/images/wheel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/images/wheel2.png -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/BoneMesh.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/BoneMesh.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/Envelop.sgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/Envelop.sgr -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/camera.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/camera.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls1.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls1.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls2.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls2.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls3.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls3.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls4.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls4.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls5.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls5.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls6.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls6.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls7.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls7.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls8.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls8.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/controls9.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/controls9.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/indicator.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/indicator.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/light.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/light.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/mesh/sphere.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/mesh/sphere.sgm -------------------------------------------------------------------------------- /Iyan3D/Resources/shaders/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/Resources/shaders/Shaders.metal -------------------------------------------------------------------------------- /Iyan3D/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/SettingsViewController.h -------------------------------------------------------------------------------- /Iyan3D/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/SettingsViewController.m -------------------------------------------------------------------------------- /Iyan3D/SettingsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/SettingsViewController.xib -------------------------------------------------------------------------------- /Iyan3D/SettingsViewControllerPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/SettingsViewControllerPhone.xib -------------------------------------------------------------------------------- /Iyan3D/TextFrameCellPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/TextFrameCellPhone.xib -------------------------------------------------------------------------------- /Iyan3D/TextSelectionSidePanelPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/TextSelectionSidePanelPhone.xib -------------------------------------------------------------------------------- /Iyan3D/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/es_ES.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/es_ES.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/iconlarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/iconlarge.png -------------------------------------------------------------------------------- /Iyan3D/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/launch.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/launch.xib -------------------------------------------------------------------------------- /Iyan3D/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/main.m -------------------------------------------------------------------------------- /Iyan3D/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/nb-NO.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/nb-NO.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3D/ui/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/AppDelegate.h -------------------------------------------------------------------------------- /Iyan3D/ui/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/AppDelegate.mm -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/BeginView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/BeginView.xib -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/CommonProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/CommonProps.h -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/CommonProps.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/CommonProps.mm -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/FontCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/FontCellView.h -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/FontCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/FontCellView.m -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/FrameCellNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/FrameCellNew.h -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/GetPixelDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/GetPixelDemo.h -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/GetPixelDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/GetPixelDemo.m -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/ObjCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/ObjCellView.h -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/ObjCellView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/ObjCellView.mm -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/OnBoardVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/OnBoardVC.h -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/OnBoardVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/OnBoardVC.m -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/OnBoardVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/OnBoardVC.xib -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/SegmentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/SegmentCell.h -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/SegmentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/SegmentCell.m -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/StepView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/StepView.h -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/StepView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/StepView.m -------------------------------------------------------------------------------- /Iyan3D/ui/Popover Views/StepView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/ui/Popover Views/StepView.xib -------------------------------------------------------------------------------- /Iyan3D/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3D/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Iyan3Dcopy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3Dcopy-Info.plist -------------------------------------------------------------------------------- /Iyan3dEngineFiles/BoneLimitsHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/BoneLimitsHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/CameraViewHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/CameraViewHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/ConversionHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/ConversionHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/FileHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/FileHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/HeaderFiles/MeshRW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/HeaderFiles/MeshRW.h -------------------------------------------------------------------------------- /Iyan3dEngineFiles/HeaderFiles/RigKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/HeaderFiles/RigKey.h -------------------------------------------------------------------------------- /Iyan3dEngineFiles/HeaderFiles/SGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/HeaderFiles/SGNode.h -------------------------------------------------------------------------------- /Iyan3dEngineFiles/HeaderFiles/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/HeaderFiles/config.h -------------------------------------------------------------------------------- /Iyan3dEngineFiles/KeyHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/KeyHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/MaterialProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/MaterialProperty.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/MathHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/MathHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/MeshRW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/MeshRW.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/PhysicsHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/PhysicsHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/RenderHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/RenderHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SGAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SGAction.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SGActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SGActionManager.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SGEditorScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SGEditorScene.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SGJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SGJoint.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SGNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SGNode.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SGSceneLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SGSceneLoader.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SGSceneUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SGSceneUpdater.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SGSceneWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SGSceneWriter.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/SceneHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/SceneHelper.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/ShaderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/ShaderManager.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/bullet3/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/bullet3/AUTHORS.txt -------------------------------------------------------------------------------- /Iyan3dEngineFiles/bullet3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/bullet3/LICENSE.txt -------------------------------------------------------------------------------- /Iyan3dEngineFiles/bullet3/VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.87 2 | -------------------------------------------------------------------------------- /Iyan3dEngineFiles/exportSGR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/exportSGR.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/json/json_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/json/json_json.h -------------------------------------------------------------------------------- /Iyan3dEngineFiles/json/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/json/json_reader.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/json/json_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/json/json_reader.h -------------------------------------------------------------------------------- /Iyan3dEngineFiles/json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/json/json_value.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/json/json_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/json/json_value.h -------------------------------------------------------------------------------- /Iyan3dEngineFiles/json/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/json/json_writer.cpp -------------------------------------------------------------------------------- /Iyan3dEngineFiles/json/json_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/Iyan3dEngineFiles/json/json_writer.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/README.md -------------------------------------------------------------------------------- /SGEngine2/Core/Material/MTLMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Material/MTLMaterial.h -------------------------------------------------------------------------------- /SGEngine2/Core/Material/MTLMaterial.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Material/MTLMaterial.mm -------------------------------------------------------------------------------- /SGEngine2/Core/Material/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Material/Material.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Material/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Material/Material.h -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/Joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/Joint.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/Joint.h -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/Mesh.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/Mesh.h -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/PlaneMeshNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/PlaneMeshNode.h -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/SGCircleNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/SGCircleNode.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/SGCircleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/SGCircleNode.h -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/SkinMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/SkinMesh.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/SkinMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/SkinMesh.h -------------------------------------------------------------------------------- /SGEngine2/Core/Meshes/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Meshes/md5.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/APIData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/APIData.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/APIData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/APIData.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/CameraNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/CameraNode.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/CameraNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/CameraNode.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/EmptyNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/EmptyNode.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/EmptyNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/EmptyNode.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/InstanceNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/InstanceNode.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/InstanceNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/InstanceNode.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/JointNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/JointNode.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/JointNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/JointNode.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/LightNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/LightNode.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/LightNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/LightNode.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/MTLNodeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/MTLNodeData.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/MTLNodeData.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/MTLNodeData.mm -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/MeshNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/MeshNode.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/MeshNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/MeshNode.h -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/Node.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/Nodes/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Nodes/Node.h -------------------------------------------------------------------------------- /SGEngine2/Core/Textures/MTLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Textures/MTLTexture.h -------------------------------------------------------------------------------- /SGEngine2/Core/Textures/MTLTexture.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Textures/MTLTexture.mm -------------------------------------------------------------------------------- /SGEngine2/Core/Textures/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/Textures/Texture.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/BoundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/BoundingBox.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/BoundingBox.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/Frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Frustum.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/Frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Frustum.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/Line3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Line3D.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/Line3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Line3D.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/Mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Mat4.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/Mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Mat4.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/Plane3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Plane3D.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/Plane3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Plane3D.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Quaternion.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Quaternion.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Vector2.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Vector2.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Vector3.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Vector3.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/Vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Vector4.cpp -------------------------------------------------------------------------------- /SGEngine2/Core/common/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/Vector4.h -------------------------------------------------------------------------------- /SGEngine2/Core/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Core/common/common.h -------------------------------------------------------------------------------- /SGEngine2/Loaders/SceneImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Loaders/SceneImporter.cpp -------------------------------------------------------------------------------- /SGEngine2/Loaders/SceneImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Loaders/SceneImporter.h -------------------------------------------------------------------------------- /SGEngine2/MetalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/MetalHandler.h -------------------------------------------------------------------------------- /SGEngine2/MetalHandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/MetalHandler.mm -------------------------------------------------------------------------------- /SGEngine2/RenderManager/MetalWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/RenderManager/MetalWrapper.h -------------------------------------------------------------------------------- /SGEngine2/SGEngineCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/SGEngineCommon.h -------------------------------------------------------------------------------- /SGEngine2/SGEngineMTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/SGEngineMTL.h -------------------------------------------------------------------------------- /SGEngine2/SceneManager/SceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/SceneManager/SceneManager.h -------------------------------------------------------------------------------- /SGEngine2/Utilities/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Utilities/Helper.cpp -------------------------------------------------------------------------------- /SGEngine2/Utilities/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Utilities/Helper.h -------------------------------------------------------------------------------- /SGEngine2/Utilities/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Utilities/Logger.cpp -------------------------------------------------------------------------------- /SGEngine2/Utilities/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Utilities/Logger.h -------------------------------------------------------------------------------- /SGEngine2/Utilities/Maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Utilities/Maths.cpp -------------------------------------------------------------------------------- /SGEngine2/Utilities/Maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/SGEngine2/Utilities/Maths.h -------------------------------------------------------------------------------- /assimp-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/.editorconfig -------------------------------------------------------------------------------- /assimp-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/.gitattributes -------------------------------------------------------------------------------- /assimp-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/.gitignore -------------------------------------------------------------------------------- /assimp-master/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/.travis.sh -------------------------------------------------------------------------------- /assimp-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/.travis.yml -------------------------------------------------------------------------------- /assimp-master/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/CREDITS -------------------------------------------------------------------------------- /assimp-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/LICENSE -------------------------------------------------------------------------------- /assimp-master/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/Readme.md -------------------------------------------------------------------------------- /assimp-master/code/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/.editorconfig -------------------------------------------------------------------------------- /assimp-master/code/3DSConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/3DSConverter.cpp -------------------------------------------------------------------------------- /assimp-master/code/3DSExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/3DSExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/3DSExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/3DSExporter.h -------------------------------------------------------------------------------- /assimp-master/code/3DSHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/3DSHelper.h -------------------------------------------------------------------------------- /assimp-master/code/3DSLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/3DSLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/3DSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/3DSLoader.h -------------------------------------------------------------------------------- /assimp-master/code/3MFXmlTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/3MFXmlTags.h -------------------------------------------------------------------------------- /assimp-master/code/ACLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ACLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/ACLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ACLoader.h -------------------------------------------------------------------------------- /assimp-master/code/AMFImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AMFImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/AMFImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AMFImporter.hpp -------------------------------------------------------------------------------- /assimp-master/code/ASELoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ASELoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/ASELoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ASELoader.h -------------------------------------------------------------------------------- /assimp-master/code/ASEParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ASEParser.cpp -------------------------------------------------------------------------------- /assimp-master/code/ASEParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ASEParser.h -------------------------------------------------------------------------------- /assimp-master/code/AssbinExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AssbinExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/AssbinExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AssbinExporter.h -------------------------------------------------------------------------------- /assimp-master/code/AssbinLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AssbinLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/AssbinLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AssbinLoader.h -------------------------------------------------------------------------------- /assimp-master/code/Assimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Assimp.cpp -------------------------------------------------------------------------------- /assimp-master/code/AssimpCExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AssimpCExport.cpp -------------------------------------------------------------------------------- /assimp-master/code/AssxmlExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AssxmlExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/AssxmlExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/AssxmlExporter.h -------------------------------------------------------------------------------- /assimp-master/code/B3DImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/B3DImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/B3DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/B3DImporter.h -------------------------------------------------------------------------------- /assimp-master/code/BVHLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BVHLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/BVHLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BVHLoader.h -------------------------------------------------------------------------------- /assimp-master/code/BaseImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BaseImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BaseImporter.h -------------------------------------------------------------------------------- /assimp-master/code/BaseProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BaseProcess.cpp -------------------------------------------------------------------------------- /assimp-master/code/BaseProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BaseProcess.h -------------------------------------------------------------------------------- /assimp-master/code/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Bitmap.cpp -------------------------------------------------------------------------------- /assimp-master/code/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Bitmap.h -------------------------------------------------------------------------------- /assimp-master/code/BlenderBMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderBMesh.cpp -------------------------------------------------------------------------------- /assimp-master/code/BlenderBMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderBMesh.h -------------------------------------------------------------------------------- /assimp-master/code/BlenderDNA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderDNA.cpp -------------------------------------------------------------------------------- /assimp-master/code/BlenderDNA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderDNA.h -------------------------------------------------------------------------------- /assimp-master/code/BlenderDNA.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderDNA.inl -------------------------------------------------------------------------------- /assimp-master/code/BlenderLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/BlenderLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderLoader.h -------------------------------------------------------------------------------- /assimp-master/code/BlenderModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderModifier.cpp -------------------------------------------------------------------------------- /assimp-master/code/BlenderModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderModifier.h -------------------------------------------------------------------------------- /assimp-master/code/BlenderScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderScene.cpp -------------------------------------------------------------------------------- /assimp-master/code/BlenderScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderScene.h -------------------------------------------------------------------------------- /assimp-master/code/BlenderSceneGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlenderSceneGen.h -------------------------------------------------------------------------------- /assimp-master/code/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/BlobIOSystem.h -------------------------------------------------------------------------------- /assimp-master/code/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ByteSwapper.h -------------------------------------------------------------------------------- /assimp-master/code/C4DImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/C4DImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/C4DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/C4DImporter.h -------------------------------------------------------------------------------- /assimp-master/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/CMakeLists.txt -------------------------------------------------------------------------------- /assimp-master/code/COBLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/COBLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/COBLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/COBLoader.h -------------------------------------------------------------------------------- /assimp-master/code/COBScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/COBScene.h -------------------------------------------------------------------------------- /assimp-master/code/CSMLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/CSMLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/CSMLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/CSMLoader.h -------------------------------------------------------------------------------- /assimp-master/code/ColladaExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ColladaExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/ColladaExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ColladaExporter.h -------------------------------------------------------------------------------- /assimp-master/code/ColladaHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ColladaHelper.h -------------------------------------------------------------------------------- /assimp-master/code/ColladaLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ColladaLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/ColladaLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ColladaLoader.h -------------------------------------------------------------------------------- /assimp-master/code/ColladaParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ColladaParser.cpp -------------------------------------------------------------------------------- /assimp-master/code/ColladaParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ColladaParser.h -------------------------------------------------------------------------------- /assimp-master/code/CreateAnimMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/CreateAnimMesh.cpp -------------------------------------------------------------------------------- /assimp-master/code/CreateAnimMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/CreateAnimMesh.h -------------------------------------------------------------------------------- /assimp-master/code/D3MFExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/D3MFExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/D3MFExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/D3MFExporter.h -------------------------------------------------------------------------------- /assimp-master/code/D3MFImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/D3MFImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/D3MFImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/D3MFImporter.h -------------------------------------------------------------------------------- /assimp-master/code/D3MFOpcPackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/D3MFOpcPackage.cpp -------------------------------------------------------------------------------- /assimp-master/code/D3MFOpcPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/D3MFOpcPackage.h -------------------------------------------------------------------------------- /assimp-master/code/DXFHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DXFHelper.h -------------------------------------------------------------------------------- /assimp-master/code/DXFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DXFLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/DXFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DXFLoader.h -------------------------------------------------------------------------------- /assimp-master/code/DeboneProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DeboneProcess.cpp -------------------------------------------------------------------------------- /assimp-master/code/DeboneProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DeboneProcess.h -------------------------------------------------------------------------------- /assimp-master/code/DefaultIOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DefaultIOStream.cpp -------------------------------------------------------------------------------- /assimp-master/code/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DefaultIOStream.h -------------------------------------------------------------------------------- /assimp-master/code/DefaultIOSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DefaultIOSystem.cpp -------------------------------------------------------------------------------- /assimp-master/code/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DefaultIOSystem.h -------------------------------------------------------------------------------- /assimp-master/code/DefaultLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/DefaultLogger.cpp -------------------------------------------------------------------------------- /assimp-master/code/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Defines.h -------------------------------------------------------------------------------- /assimp-master/code/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Exceptional.h -------------------------------------------------------------------------------- /assimp-master/code/Exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Exporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXAnimation.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXCompileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXCompileConfig.h -------------------------------------------------------------------------------- /assimp-master/code/FBXConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXConverter.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXConverter.h -------------------------------------------------------------------------------- /assimp-master/code/FBXDeformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXDeformer.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXDocument.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXDocument.h -------------------------------------------------------------------------------- /assimp-master/code/FBXDocumentUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXDocumentUtil.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXDocumentUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXDocumentUtil.h -------------------------------------------------------------------------------- /assimp-master/code/FBXImportSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXImportSettings.h -------------------------------------------------------------------------------- /assimp-master/code/FBXImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXImporter.h -------------------------------------------------------------------------------- /assimp-master/code/FBXMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXMaterial.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXMeshGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXMeshGeometry.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXMeshGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXMeshGeometry.h -------------------------------------------------------------------------------- /assimp-master/code/FBXModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXModel.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXParser.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXParser.h -------------------------------------------------------------------------------- /assimp-master/code/FBXProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXProperties.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXProperties.h -------------------------------------------------------------------------------- /assimp-master/code/FBXTokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXTokenizer.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXTokenizer.h -------------------------------------------------------------------------------- /assimp-master/code/FBXUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXUtil.cpp -------------------------------------------------------------------------------- /assimp-master/code/FBXUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FBXUtil.h -------------------------------------------------------------------------------- /assimp-master/code/FIReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FIReader.cpp -------------------------------------------------------------------------------- /assimp-master/code/FIReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FIReader.hpp -------------------------------------------------------------------------------- /assimp-master/code/FileLogStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FileLogStream.h -------------------------------------------------------------------------------- /assimp-master/code/FileSystemFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FileSystemFilter.h -------------------------------------------------------------------------------- /assimp-master/code/FindDegenerates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FindDegenerates.cpp -------------------------------------------------------------------------------- /assimp-master/code/FindDegenerates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FindDegenerates.h -------------------------------------------------------------------------------- /assimp-master/code/FixNormalsStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FixNormalsStep.cpp -------------------------------------------------------------------------------- /assimp-master/code/FixNormalsStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/FixNormalsStep.h -------------------------------------------------------------------------------- /assimp-master/code/GenericProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/GenericProperty.h -------------------------------------------------------------------------------- /assimp-master/code/HMPFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/HMPFileData.h -------------------------------------------------------------------------------- /assimp-master/code/HMPLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/HMPLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/HMPLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/HMPLoader.h -------------------------------------------------------------------------------- /assimp-master/code/HalfLifeFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/HalfLifeFileData.h -------------------------------------------------------------------------------- /assimp-master/code/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Hash.h -------------------------------------------------------------------------------- /assimp-master/code/IFCBoolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCBoolean.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCCurve.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCGeometry.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCLoader.h -------------------------------------------------------------------------------- /assimp-master/code/IFCMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCMaterial.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCOpenings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCOpenings.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCProfile.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCReaderGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCReaderGen.h -------------------------------------------------------------------------------- /assimp-master/code/IFCReaderGen1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCReaderGen1.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCReaderGen2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCReaderGen2.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCUtil.cpp -------------------------------------------------------------------------------- /assimp-master/code/IFCUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFCUtil.h -------------------------------------------------------------------------------- /assimp-master/code/IFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IFF.h -------------------------------------------------------------------------------- /assimp-master/code/IOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IOStreamBuffer.h -------------------------------------------------------------------------------- /assimp-master/code/IRRLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IRRLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/IRRLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IRRLoader.h -------------------------------------------------------------------------------- /assimp-master/code/IRRMeshLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IRRMeshLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/IRRMeshLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IRRMeshLoader.h -------------------------------------------------------------------------------- /assimp-master/code/IRRShared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IRRShared.cpp -------------------------------------------------------------------------------- /assimp-master/code/IRRShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/IRRShared.h -------------------------------------------------------------------------------- /assimp-master/code/Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Importer.cpp -------------------------------------------------------------------------------- /assimp-master/code/Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Importer.h -------------------------------------------------------------------------------- /assimp-master/code/LWOAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWOAnimation.cpp -------------------------------------------------------------------------------- /assimp-master/code/LWOAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWOAnimation.h -------------------------------------------------------------------------------- /assimp-master/code/LWOBLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWOBLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/LWOFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWOFileData.h -------------------------------------------------------------------------------- /assimp-master/code/LWOLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWOLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/LWOLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWOLoader.h -------------------------------------------------------------------------------- /assimp-master/code/LWOMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWOMaterial.cpp -------------------------------------------------------------------------------- /assimp-master/code/LWSLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWSLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/LWSLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LWSLoader.h -------------------------------------------------------------------------------- /assimp-master/code/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LineSplitter.h -------------------------------------------------------------------------------- /assimp-master/code/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/LogAux.h -------------------------------------------------------------------------------- /assimp-master/code/MD2FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD2FileData.h -------------------------------------------------------------------------------- /assimp-master/code/MD2Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD2Loader.cpp -------------------------------------------------------------------------------- /assimp-master/code/MD2Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD2Loader.h -------------------------------------------------------------------------------- /assimp-master/code/MD2NormalTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD2NormalTable.h -------------------------------------------------------------------------------- /assimp-master/code/MD3FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD3FileData.h -------------------------------------------------------------------------------- /assimp-master/code/MD3Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD3Loader.cpp -------------------------------------------------------------------------------- /assimp-master/code/MD3Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD3Loader.h -------------------------------------------------------------------------------- /assimp-master/code/MD4FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD4FileData.h -------------------------------------------------------------------------------- /assimp-master/code/MD5Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD5Loader.cpp -------------------------------------------------------------------------------- /assimp-master/code/MD5Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD5Loader.h -------------------------------------------------------------------------------- /assimp-master/code/MD5Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD5Parser.cpp -------------------------------------------------------------------------------- /assimp-master/code/MD5Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MD5Parser.h -------------------------------------------------------------------------------- /assimp-master/code/MDCFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MDCFileData.h -------------------------------------------------------------------------------- /assimp-master/code/MDCLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MDCLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/MDCLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MDCLoader.h -------------------------------------------------------------------------------- /assimp-master/code/MDCNormalTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MDCNormalTable.h -------------------------------------------------------------------------------- /assimp-master/code/MDLFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MDLFileData.h -------------------------------------------------------------------------------- /assimp-master/code/MDLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MDLLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/MDLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MDLLoader.h -------------------------------------------------------------------------------- /assimp-master/code/MMDCpp14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MMDCpp14.h -------------------------------------------------------------------------------- /assimp-master/code/MMDImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MMDImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/MMDImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MMDImporter.h -------------------------------------------------------------------------------- /assimp-master/code/MMDPmdParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MMDPmdParser.h -------------------------------------------------------------------------------- /assimp-master/code/MMDPmxParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MMDPmxParser.cpp -------------------------------------------------------------------------------- /assimp-master/code/MMDPmxParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MMDPmxParser.h -------------------------------------------------------------------------------- /assimp-master/code/MMDVmdParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MMDVmdParser.h -------------------------------------------------------------------------------- /assimp-master/code/MS3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MS3DLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/MS3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MS3DLoader.h -------------------------------------------------------------------------------- /assimp-master/code/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Macros.h -------------------------------------------------------------------------------- /assimp-master/code/MakeVerboseFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MakeVerboseFormat.h -------------------------------------------------------------------------------- /assimp-master/code/MaterialSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MaterialSystem.cpp -------------------------------------------------------------------------------- /assimp-master/code/MaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MaterialSystem.h -------------------------------------------------------------------------------- /assimp-master/code/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MathFunctions.h -------------------------------------------------------------------------------- /assimp-master/code/MemoryIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/MemoryIOWrapper.h -------------------------------------------------------------------------------- /assimp-master/code/NDOLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/NDOLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/NDOLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/NDOLoader.h -------------------------------------------------------------------------------- /assimp-master/code/NFFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/NFFLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/NFFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/NFFLoader.h -------------------------------------------------------------------------------- /assimp-master/code/OFFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OFFLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/OFFLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OFFLoader.h -------------------------------------------------------------------------------- /assimp-master/code/ObjExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ObjExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/ObjExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ObjExporter.h -------------------------------------------------------------------------------- /assimp-master/code/ObjFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ObjFileData.h -------------------------------------------------------------------------------- /assimp-master/code/ObjFileImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ObjFileImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/ObjFileImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ObjFileImporter.h -------------------------------------------------------------------------------- /assimp-master/code/ObjFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ObjFileParser.cpp -------------------------------------------------------------------------------- /assimp-master/code/ObjFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ObjFileParser.h -------------------------------------------------------------------------------- /assimp-master/code/ObjTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ObjTools.h -------------------------------------------------------------------------------- /assimp-master/code/OgreImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OgreImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/OgreImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OgreImporter.h -------------------------------------------------------------------------------- /assimp-master/code/OgreMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OgreMaterial.cpp -------------------------------------------------------------------------------- /assimp-master/code/OgreParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OgreParsingUtils.h -------------------------------------------------------------------------------- /assimp-master/code/OgreStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OgreStructs.cpp -------------------------------------------------------------------------------- /assimp-master/code/OgreStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OgreStructs.h -------------------------------------------------------------------------------- /assimp-master/code/OgreXmlSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OgreXmlSerializer.h -------------------------------------------------------------------------------- /assimp-master/code/OpenGEXExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OpenGEXExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/OpenGEXExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OpenGEXExporter.h -------------------------------------------------------------------------------- /assimp-master/code/OpenGEXImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OpenGEXImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/OpenGEXImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OpenGEXImporter.h -------------------------------------------------------------------------------- /assimp-master/code/OpenGEXStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OpenGEXStructs.h -------------------------------------------------------------------------------- /assimp-master/code/OptimizeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OptimizeGraph.cpp -------------------------------------------------------------------------------- /assimp-master/code/OptimizeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OptimizeGraph.h -------------------------------------------------------------------------------- /assimp-master/code/OptimizeMeshes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OptimizeMeshes.cpp -------------------------------------------------------------------------------- /assimp-master/code/OptimizeMeshes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/OptimizeMeshes.h -------------------------------------------------------------------------------- /assimp-master/code/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ParsingUtils.h -------------------------------------------------------------------------------- /assimp-master/code/PlyExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/PlyExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/PlyExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/PlyExporter.h -------------------------------------------------------------------------------- /assimp-master/code/PlyLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/PlyLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/PlyLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/PlyLoader.h -------------------------------------------------------------------------------- /assimp-master/code/PlyParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/PlyParser.cpp -------------------------------------------------------------------------------- /assimp-master/code/PlyParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/PlyParser.h -------------------------------------------------------------------------------- /assimp-master/code/PolyTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/PolyTools.h -------------------------------------------------------------------------------- /assimp-master/code/ProcessHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ProcessHelper.cpp -------------------------------------------------------------------------------- /assimp-master/code/ProcessHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ProcessHelper.h -------------------------------------------------------------------------------- /assimp-master/code/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Profiler.h -------------------------------------------------------------------------------- /assimp-master/code/Q3BSPFileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Q3BSPFileData.h -------------------------------------------------------------------------------- /assimp-master/code/Q3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Q3DLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/Q3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Q3DLoader.h -------------------------------------------------------------------------------- /assimp-master/code/RawLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/RawLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/RawLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/RawLoader.h -------------------------------------------------------------------------------- /assimp-master/code/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/RemoveComments.h -------------------------------------------------------------------------------- /assimp-master/code/SGMLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SGMLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/SGMLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SGMLoader.h -------------------------------------------------------------------------------- /assimp-master/code/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SGSpatialSort.h -------------------------------------------------------------------------------- /assimp-master/code/SIBImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SIBImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/SIBImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SIBImporter.h -------------------------------------------------------------------------------- /assimp-master/code/SMDLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SMDLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/SMDLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SMDLoader.h -------------------------------------------------------------------------------- /assimp-master/code/STEPFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/STEPFile.h -------------------------------------------------------------------------------- /assimp-master/code/STEPFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/STEPFileReader.h -------------------------------------------------------------------------------- /assimp-master/code/STLExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/STLExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/STLExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/STLExporter.h -------------------------------------------------------------------------------- /assimp-master/code/STLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/STLLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/STLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/STLLoader.h -------------------------------------------------------------------------------- /assimp-master/code/ScaleProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ScaleProcess.cpp -------------------------------------------------------------------------------- /assimp-master/code/ScaleProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ScaleProcess.h -------------------------------------------------------------------------------- /assimp-master/code/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SceneCombiner.h -------------------------------------------------------------------------------- /assimp-master/code/ScenePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ScenePrivate.h -------------------------------------------------------------------------------- /assimp-master/code/SpatialSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SpatialSort.cpp -------------------------------------------------------------------------------- /assimp-master/code/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/SpatialSort.h -------------------------------------------------------------------------------- /assimp-master/code/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/StandardShapes.h -------------------------------------------------------------------------------- /assimp-master/code/StepExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/StepExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/StepExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/StepExporter.h -------------------------------------------------------------------------------- /assimp-master/code/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/StreamReader.h -------------------------------------------------------------------------------- /assimp-master/code/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/StreamWriter.h -------------------------------------------------------------------------------- /assimp-master/code/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/StringUtils.h -------------------------------------------------------------------------------- /assimp-master/code/Subdivision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Subdivision.cpp -------------------------------------------------------------------------------- /assimp-master/code/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Subdivision.h -------------------------------------------------------------------------------- /assimp-master/code/TerragenLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/TerragenLoader.h -------------------------------------------------------------------------------- /assimp-master/code/Text3DLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Text3DLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/Text3DLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Text3DLoader.h -------------------------------------------------------------------------------- /assimp-master/code/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/TinyFormatter.h -------------------------------------------------------------------------------- /assimp-master/code/UnrealLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/UnrealLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/UnrealLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/UnrealLoader.h -------------------------------------------------------------------------------- /assimp-master/code/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Version.cpp -------------------------------------------------------------------------------- /assimp-master/code/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/Vertex.h -------------------------------------------------------------------------------- /assimp-master/code/X3DExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/X3DExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/X3DExporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/X3DExporter.hpp -------------------------------------------------------------------------------- /assimp-master/code/X3DImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/X3DImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/X3DImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/X3DImporter.hpp -------------------------------------------------------------------------------- /assimp-master/code/XFileExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/XFileExporter.h -------------------------------------------------------------------------------- /assimp-master/code/XFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/XFileHelper.h -------------------------------------------------------------------------------- /assimp-master/code/XFileImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/XFileImporter.h -------------------------------------------------------------------------------- /assimp-master/code/XFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/XFileParser.cpp -------------------------------------------------------------------------------- /assimp-master/code/XFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/XFileParser.h -------------------------------------------------------------------------------- /assimp-master/code/XGLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/XGLLoader.cpp -------------------------------------------------------------------------------- /assimp-master/code/XGLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/XGLLoader.h -------------------------------------------------------------------------------- /assimp-master/code/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/XMLTools.h -------------------------------------------------------------------------------- /assimp-master/code/assbin_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/assbin_chunks.h -------------------------------------------------------------------------------- /assimp-master/code/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/fast_atof.h -------------------------------------------------------------------------------- /assimp-master/code/freeType/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/freeType/README -------------------------------------------------------------------------------- /assimp-master/code/ftgl/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/AUTHORS -------------------------------------------------------------------------------- /assimp-master/code/ftgl/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/BUGS -------------------------------------------------------------------------------- /assimp-master/code/ftgl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/COPYING -------------------------------------------------------------------------------- /assimp-master/code/ftgl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/ChangeLog -------------------------------------------------------------------------------- /assimp-master/code/ftgl/Contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/Contour.cpp -------------------------------------------------------------------------------- /assimp-master/code/ftgl/Contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/Contour.h -------------------------------------------------------------------------------- /assimp-master/code/ftgl/FtglPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/FtglPoint.h -------------------------------------------------------------------------------- /assimp-master/code/ftgl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/INSTALL -------------------------------------------------------------------------------- /assimp-master/code/ftgl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/NEWS -------------------------------------------------------------------------------- /assimp-master/code/ftgl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/README -------------------------------------------------------------------------------- /assimp-master/code/ftgl/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/ftgl/TODO -------------------------------------------------------------------------------- /assimp-master/code/glTF2Asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTF2Asset.h -------------------------------------------------------------------------------- /assimp-master/code/glTF2Asset.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTF2Asset.inl -------------------------------------------------------------------------------- /assimp-master/code/glTF2Exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTF2Exporter.h -------------------------------------------------------------------------------- /assimp-master/code/glTF2Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTF2Importer.h -------------------------------------------------------------------------------- /assimp-master/code/glTFAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTFAsset.h -------------------------------------------------------------------------------- /assimp-master/code/glTFAsset.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTFAsset.inl -------------------------------------------------------------------------------- /assimp-master/code/glTFExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTFExporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/glTFExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTFExporter.h -------------------------------------------------------------------------------- /assimp-master/code/glTFImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTFImporter.cpp -------------------------------------------------------------------------------- /assimp-master/code/glTFImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/glTFImporter.h -------------------------------------------------------------------------------- /assimp-master/code/irrXMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/irrXMLWrapper.h -------------------------------------------------------------------------------- /assimp-master/code/makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/makefile.mingw -------------------------------------------------------------------------------- /assimp-master/code/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/qnan.h -------------------------------------------------------------------------------- /assimp-master/code/res/assimp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/res/assimp.rc -------------------------------------------------------------------------------- /assimp-master/code/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/res/resource.h -------------------------------------------------------------------------------- /assimp-master/code/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/code/scene.cpp -------------------------------------------------------------------------------- /assimp-master/contrib/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/gtest/CHANGES -------------------------------------------------------------------------------- /assimp-master/contrib/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/gtest/LICENSE -------------------------------------------------------------------------------- /assimp-master/contrib/gtest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assimp-master/contrib/unzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/unzip/crypt.h -------------------------------------------------------------------------------- /assimp-master/contrib/unzip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/unzip/ioapi.c -------------------------------------------------------------------------------- /assimp-master/contrib/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/unzip/ioapi.h -------------------------------------------------------------------------------- /assimp-master/contrib/unzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/unzip/unzip.c -------------------------------------------------------------------------------- /assimp-master/contrib/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/unzip/unzip.h -------------------------------------------------------------------------------- /assimp-master/contrib/zip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zip/README.md -------------------------------------------------------------------------------- /assimp-master/contrib/zip/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zip/UNLICENSE -------------------------------------------------------------------------------- /assimp-master/contrib/zip/src/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zip/src/zip.c -------------------------------------------------------------------------------- /assimp-master/contrib/zip/src/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zip/src/zip.h -------------------------------------------------------------------------------- /assimp-master/contrib/zip/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zip/zip.png -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/README -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/crc32.c -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/crc32.h -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/gzguts.h -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/gzlib.c -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/gzread.c -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/trees.c -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/trees.h -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/zlib.h -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/zutil.c -------------------------------------------------------------------------------- /assimp-master/contrib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib/zutil.h -------------------------------------------------------------------------------- /assimp-master/contrib/zlib_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/contrib/zlib_note.txt -------------------------------------------------------------------------------- /assimp-master/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/doc/Doxyfile -------------------------------------------------------------------------------- /assimp-master/doc/Doxyfile_Cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/doc/Doxyfile_Cmd -------------------------------------------------------------------------------- /assimp-master/doc/Preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/doc/Preamble.txt -------------------------------------------------------------------------------- /assimp-master/doc/datastructure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/doc/datastructure.xml -------------------------------------------------------------------------------- /assimp-master/doc/dox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/doc/dox.h -------------------------------------------------------------------------------- /assimp-master/doc/dox_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/doc/dox_cmd.h -------------------------------------------------------------------------------- /assimp-master/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/include/assimp/anim.h -------------------------------------------------------------------------------- /assimp-master/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/include/assimp/defs.h -------------------------------------------------------------------------------- /assimp-master/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/assimp-master/include/assimp/mesh.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftcid.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftlist.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftmac.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftmm.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /freetype2/include/freetype/ftxf86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/ftxf86.h -------------------------------------------------------------------------------- /freetype2/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/freetype/tttags.h -------------------------------------------------------------------------------- /freetype2/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/include/ft2build.h -------------------------------------------------------------------------------- /freetype2/src/autofit/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/Jamfile -------------------------------------------------------------------------------- /freetype2/src/autofit/afangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afangles.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afangles.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afcjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afcjk.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afcjk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afcjk.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afdummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afdummy.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afdummy.h -------------------------------------------------------------------------------- /freetype2/src/autofit/aferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/aferrors.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afglobal.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afglobal.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afhints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afhints.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afhints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afhints.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afindic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afindic.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afindic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afindic.h -------------------------------------------------------------------------------- /freetype2/src/autofit/aflatin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/aflatin.c -------------------------------------------------------------------------------- /freetype2/src/autofit/aflatin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/aflatin.h -------------------------------------------------------------------------------- /freetype2/src/autofit/aflatin2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/aflatin2.c -------------------------------------------------------------------------------- /freetype2/src/autofit/aflatin2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/aflatin2.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afloader.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afloader.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afmodule.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afmodule.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afpic.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afpic.h -------------------------------------------------------------------------------- /freetype2/src/autofit/aftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/aftypes.h -------------------------------------------------------------------------------- /freetype2/src/autofit/afwarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afwarp.c -------------------------------------------------------------------------------- /freetype2/src/autofit/afwarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/afwarp.h -------------------------------------------------------------------------------- /freetype2/src/autofit/autofit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/autofit.c -------------------------------------------------------------------------------- /freetype2/src/autofit/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/module.mk -------------------------------------------------------------------------------- /freetype2/src/autofit/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/autofit/rules.mk -------------------------------------------------------------------------------- /freetype2/src/base/basepic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/basepic.c -------------------------------------------------------------------------------- /freetype2/src/base/basepic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/basepic.h -------------------------------------------------------------------------------- /freetype2/src/base/ftadvanc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftadvanc.c -------------------------------------------------------------------------------- /freetype2/src/base/ftapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftapi.c -------------------------------------------------------------------------------- /freetype2/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftbase.c -------------------------------------------------------------------------------- /freetype2/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftbase.h -------------------------------------------------------------------------------- /freetype2/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftbbox.c -------------------------------------------------------------------------------- /freetype2/src/base/ftbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftbitmap.c -------------------------------------------------------------------------------- /freetype2/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftcalc.c -------------------------------------------------------------------------------- /freetype2/src/base/ftdbgmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftdbgmem.c -------------------------------------------------------------------------------- /freetype2/src/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftdebug.c -------------------------------------------------------------------------------- /freetype2/src/base/ftgloadr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftgloadr.c -------------------------------------------------------------------------------- /freetype2/src/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftglyph.c -------------------------------------------------------------------------------- /freetype2/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftinit.c -------------------------------------------------------------------------------- /freetype2/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftobjs.c -------------------------------------------------------------------------------- /freetype2/src/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftoutln.c -------------------------------------------------------------------------------- /freetype2/src/base/ftpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftpic.c -------------------------------------------------------------------------------- /freetype2/src/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftrfork.c -------------------------------------------------------------------------------- /freetype2/src/base/ftsnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftsnames.c -------------------------------------------------------------------------------- /freetype2/src/base/ftstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftstream.c -------------------------------------------------------------------------------- /freetype2/src/base/ftstroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftstroke.c -------------------------------------------------------------------------------- /freetype2/src/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftsynth.c -------------------------------------------------------------------------------- /freetype2/src/base/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftsystem.c -------------------------------------------------------------------------------- /freetype2/src/base/fttrigon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/fttrigon.c -------------------------------------------------------------------------------- /freetype2/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/base/ftutil.c -------------------------------------------------------------------------------- /freetype2/src/cff/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/Jamfile -------------------------------------------------------------------------------- /freetype2/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cff.c -------------------------------------------------------------------------------- /freetype2/src/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffcmap.c -------------------------------------------------------------------------------- /freetype2/src/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffcmap.h -------------------------------------------------------------------------------- /freetype2/src/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffdrivr.c -------------------------------------------------------------------------------- /freetype2/src/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffdrivr.h -------------------------------------------------------------------------------- /freetype2/src/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cfferrs.h -------------------------------------------------------------------------------- /freetype2/src/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffgload.c -------------------------------------------------------------------------------- /freetype2/src/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffgload.h -------------------------------------------------------------------------------- /freetype2/src/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffload.c -------------------------------------------------------------------------------- /freetype2/src/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffload.h -------------------------------------------------------------------------------- /freetype2/src/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffobjs.c -------------------------------------------------------------------------------- /freetype2/src/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffobjs.h -------------------------------------------------------------------------------- /freetype2/src/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffparse.c -------------------------------------------------------------------------------- /freetype2/src/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffparse.h -------------------------------------------------------------------------------- /freetype2/src/cff/cffpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffpic.c -------------------------------------------------------------------------------- /freetype2/src/cff/cffpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cffpic.h -------------------------------------------------------------------------------- /freetype2/src/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cfftoken.h -------------------------------------------------------------------------------- /freetype2/src/cff/cfftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/cfftypes.h -------------------------------------------------------------------------------- /freetype2/src/cff/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/module.mk -------------------------------------------------------------------------------- /freetype2/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/cff/rules.mk -------------------------------------------------------------------------------- /freetype2/src/pshinter/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/Jamfile -------------------------------------------------------------------------------- /freetype2/src/pshinter/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/module.mk -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshalgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshalgo.c -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshalgo.h -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshglob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshglob.c -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshglob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshglob.h -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshinter.c -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshmod.c -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshmod.h -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshnterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshnterr.h -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshpic.c -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshpic.h -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshrec.c -------------------------------------------------------------------------------- /freetype2/src/pshinter/pshrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/pshrec.h -------------------------------------------------------------------------------- /freetype2/src/pshinter/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/pshinter/rules.mk -------------------------------------------------------------------------------- /freetype2/src/psnames/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/Jamfile -------------------------------------------------------------------------------- /freetype2/src/psnames/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/module.mk -------------------------------------------------------------------------------- /freetype2/src/psnames/psmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/psmodule.c -------------------------------------------------------------------------------- /freetype2/src/psnames/psmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/psmodule.h -------------------------------------------------------------------------------- /freetype2/src/psnames/psnamerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/psnamerr.h -------------------------------------------------------------------------------- /freetype2/src/psnames/psnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/psnames.c -------------------------------------------------------------------------------- /freetype2/src/psnames/pspic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/pspic.c -------------------------------------------------------------------------------- /freetype2/src/psnames/pspic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/pspic.h -------------------------------------------------------------------------------- /freetype2/src/psnames/pstables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/pstables.h -------------------------------------------------------------------------------- /freetype2/src/psnames/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/psnames/rules.mk -------------------------------------------------------------------------------- /freetype2/src/raster/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/Jamfile -------------------------------------------------------------------------------- /freetype2/src/raster/ftmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/ftmisc.h -------------------------------------------------------------------------------- /freetype2/src/raster/ftraster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/ftraster.c -------------------------------------------------------------------------------- /freetype2/src/raster/ftraster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/ftraster.h -------------------------------------------------------------------------------- /freetype2/src/raster/ftrend1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/ftrend1.c -------------------------------------------------------------------------------- /freetype2/src/raster/ftrend1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/ftrend1.h -------------------------------------------------------------------------------- /freetype2/src/raster/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/module.mk -------------------------------------------------------------------------------- /freetype2/src/raster/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/raster.c -------------------------------------------------------------------------------- /freetype2/src/raster/rasterrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/rasterrs.h -------------------------------------------------------------------------------- /freetype2/src/raster/rastpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/rastpic.c -------------------------------------------------------------------------------- /freetype2/src/raster/rastpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/rastpic.h -------------------------------------------------------------------------------- /freetype2/src/raster/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/raster/rules.mk -------------------------------------------------------------------------------- /freetype2/src/sfnt/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/Jamfile -------------------------------------------------------------------------------- /freetype2/src/sfnt/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/module.mk -------------------------------------------------------------------------------- /freetype2/src/sfnt/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/rules.mk -------------------------------------------------------------------------------- /freetype2/src/sfnt/sfdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/sfdriver.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/sfdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/sfdriver.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/sferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/sferrors.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/sfntpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/sfntpic.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/sfntpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/sfntpic.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/sfobjs.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/sfobjs.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttcmap.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttcmap.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttcmapc.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttkern.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttkern.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttload.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttload.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttpost.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttpost.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttsbit.c -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttsbit.h -------------------------------------------------------------------------------- /freetype2/src/sfnt/ttsbit0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/sfnt/ttsbit0.c -------------------------------------------------------------------------------- /freetype2/src/smooth/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/Jamfile -------------------------------------------------------------------------------- /freetype2/src/smooth/ftgrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/ftgrays.c -------------------------------------------------------------------------------- /freetype2/src/smooth/ftgrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/ftgrays.h -------------------------------------------------------------------------------- /freetype2/src/smooth/ftsmerrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/ftsmerrs.h -------------------------------------------------------------------------------- /freetype2/src/smooth/ftsmooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/ftsmooth.c -------------------------------------------------------------------------------- /freetype2/src/smooth/ftsmooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/ftsmooth.h -------------------------------------------------------------------------------- /freetype2/src/smooth/ftspic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/ftspic.c -------------------------------------------------------------------------------- /freetype2/src/smooth/ftspic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/ftspic.h -------------------------------------------------------------------------------- /freetype2/src/smooth/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/module.mk -------------------------------------------------------------------------------- /freetype2/src/smooth/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/rules.mk -------------------------------------------------------------------------------- /freetype2/src/smooth/smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/smooth/smooth.c -------------------------------------------------------------------------------- /freetype2/src/truetype/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/Jamfile -------------------------------------------------------------------------------- /freetype2/src/truetype/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/module.mk -------------------------------------------------------------------------------- /freetype2/src/truetype/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/rules.mk -------------------------------------------------------------------------------- /freetype2/src/truetype/truetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/truetype.c -------------------------------------------------------------------------------- /freetype2/src/truetype/ttdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttdriver.c -------------------------------------------------------------------------------- /freetype2/src/truetype/ttdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttdriver.h -------------------------------------------------------------------------------- /freetype2/src/truetype/tterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/tterrors.h -------------------------------------------------------------------------------- /freetype2/src/truetype/ttgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttgload.c -------------------------------------------------------------------------------- /freetype2/src/truetype/ttgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttgload.h -------------------------------------------------------------------------------- /freetype2/src/truetype/ttgxvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttgxvar.c -------------------------------------------------------------------------------- /freetype2/src/truetype/ttgxvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttgxvar.h -------------------------------------------------------------------------------- /freetype2/src/truetype/ttinterp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttinterp.c -------------------------------------------------------------------------------- /freetype2/src/truetype/ttinterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttinterp.h -------------------------------------------------------------------------------- /freetype2/src/truetype/ttobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttobjs.c -------------------------------------------------------------------------------- /freetype2/src/truetype/ttobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttobjs.h -------------------------------------------------------------------------------- /freetype2/src/truetype/ttpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttpic.c -------------------------------------------------------------------------------- /freetype2/src/truetype/ttpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttpic.h -------------------------------------------------------------------------------- /freetype2/src/truetype/ttpload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttpload.c -------------------------------------------------------------------------------- /freetype2/src/truetype/ttpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/freetype2/src/truetype/ttpload.h -------------------------------------------------------------------------------- /privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/privacy.md -------------------------------------------------------------------------------- /screenshots/README.md: -------------------------------------------------------------------------------- 1 | Screenshots 2 | -------------------------------------------------------------------------------- /screenshots/screen1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/screenshots/screen1.jpeg -------------------------------------------------------------------------------- /screenshots/screen2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetiger/Iyan3d/HEAD/screenshots/screen2.jpeg --------------------------------------------------------------------------------