├── .github ├── FUNDING.yml └── workflows │ └── sponsors.yml ├── Aether.Physics2D.KNI.sln ├── Aether.Physics2D.MG.sln ├── Aether.Physics2D.XNA.sln ├── Aether.Physics2D.sln ├── Build.bat ├── Content.Pipeline └── Physics2DImporters │ ├── BodyContainerContent.cs │ ├── BodyTemplateContent.cs │ ├── FixtureTemplateContent.cs │ ├── Physics2DImporters.KNI.csproj │ ├── Physics2DImporters.XNA.csproj │ ├── Physics2DSVGImporter.cs │ ├── PolygonContainerContent.cs │ ├── PolygonContent.cs │ ├── Processors │ ├── BodyProcessor.cs │ ├── Physics2DTextureProcessor.cs │ └── PolygonProcessor.cs │ ├── Properties │ ├── AssemblyInfo.KNI.cs │ └── AssemblyInfo.cs │ ├── RawBodyTemplateContent.cs │ ├── RawFixtureTemplateContent.cs │ ├── SVGPathParser.cs │ └── Serialization │ ├── BodyContainerWriter.cs │ └── PolygonContainerWriter.cs ├── Documentation └── Images │ ├── 3DCameraDemo.png │ └── LightAndShadowsDemo.png ├── Icons └── NugetLogo.png ├── LICENSE ├── Package.props ├── Physics2D.Content ├── Aether.Physics2D.Content.KNI.csproj ├── Aether.Physics2D.Content.MG.csproj ├── Aether.Physics2D.Content.XNA.csproj ├── Content │ ├── BodyContainer.cs │ ├── BodyTemplate.cs │ ├── ContentReaders │ │ ├── BodyContainerReader.cs │ │ └── PolygonContainerReader.cs │ ├── FixtureTemplate.cs │ ├── Polygon.cs │ └── PolygonContainer.cs ├── ILLink.Descriptors.xml └── Properties │ ├── AssemblyInfo.KNI.cs │ ├── AssemblyInfo.MG.cs │ └── AssemblyInfo.cs ├── Physics2D.Diagnostics ├── Diagnostics │ ├── Aether.Physics2D.Diagnostics.KNI.csproj │ ├── Aether.Physics2D.Diagnostics.MG.csproj │ ├── Aether.Physics2D.Diagnostics.XNA.csproj │ ├── Content │ │ └── DiagnosticsFont.xnb │ ├── DebugView.cs │ ├── DebugViewBase.cs │ ├── DebugViewFlags.cs │ ├── Extensions.cs │ ├── ILLink.Descriptors.xml │ ├── IPrimitiveBatch.cs │ ├── PrimitiveBatch.cs │ ├── Properties │ │ ├── AssemblyInfo.KNI.cs │ │ ├── AssemblyInfo.MG.cs │ │ └── AssemblyInfo.cs │ └── README.md └── DiagnosticsContent │ ├── DiagnosticsContent.contentproj │ ├── DiagnosticsContent.mgcb │ └── DiagnosticsFont.spritefont ├── Physics2D ├── Aether.Physics2D.KNI.csproj ├── Aether.Physics2D.MG.csproj ├── Aether.Physics2D.XNA.csproj ├── Aether.Physics2D.csproj ├── Collision │ ├── Collision.cs │ ├── Distance.cs │ ├── DynamicTree.cs │ ├── DynamicTreeBroadPhase.cs │ ├── IBroadPhase.cs │ ├── Shapes │ │ ├── ChainShape.cs │ │ ├── CircleShape.cs │ │ ├── EdgeShape.cs │ │ ├── PolygonShape.cs │ │ └── Shape.cs │ └── TimeOfImpact.cs ├── Common │ ├── Complex.cs │ ├── Constant.cs │ ├── ConvexHull │ │ ├── ChainHull.cs │ │ ├── GiftWrap.cs │ │ └── Melkman.cs │ ├── Decomposition │ │ ├── BayazitDecomposer.cs │ │ ├── CDT │ │ │ ├── Delaunay │ │ │ │ ├── DelaunayTriangle.cs │ │ │ │ └── Sweep │ │ │ │ │ ├── AdvancingFront.cs │ │ │ │ │ ├── AdvancingFrontNode.cs │ │ │ │ │ ├── DTSweep.cs │ │ │ │ │ ├── DTSweepConstraint.cs │ │ │ │ │ ├── DTSweepContext.cs │ │ │ │ │ ├── DTSweepPointComparator.cs │ │ │ │ │ └── PointOnEdgeException.cs │ │ │ ├── ITriangulatable.cs │ │ │ ├── Orientation.cs │ │ │ ├── Polygon │ │ │ │ ├── Polygon.cs │ │ │ │ ├── PolygonPoint.cs │ │ │ │ └── PolygonSet.cs │ │ │ ├── Sets │ │ │ │ ├── ConstrainedPointSet.cs │ │ │ │ └── PointSet.cs │ │ │ ├── TriangulationConstraint.cs │ │ │ ├── TriangulationContext.cs │ │ │ ├── TriangulationMode.cs │ │ │ ├── TriangulationPoint.cs │ │ │ ├── TriangulationUtil.cs │ │ │ └── Util │ │ │ │ ├── FixedArray3.cs │ │ │ │ ├── FixedBitArray3.cs │ │ │ │ ├── PointGenerator.cs │ │ │ │ └── PolygonGenerator.cs │ │ ├── CDTDecomposer.cs │ │ ├── EarclipDecomposer.cs │ │ ├── FlipcodeDecomposer.cs │ │ ├── Seidel │ │ │ ├── Edge.cs │ │ │ ├── MonotoneMountain.cs │ │ │ ├── Node.cs │ │ │ ├── Point.cs │ │ │ ├── QueryGraph.cs │ │ │ ├── Sink.cs │ │ │ ├── Trapezoid.cs │ │ │ ├── TrapezoidalMap.cs │ │ │ ├── Triangulator.cs │ │ │ ├── XNode.cs │ │ │ └── YNode.cs │ │ ├── SeidelDecomposer.cs │ │ └── Triangulate.cs │ ├── FixedArray.cs │ ├── LineTools.cs │ ├── Math.cs │ ├── Path.cs │ ├── PathManager.cs │ ├── PhysicsLogic │ │ ├── BreakableBody.cs │ │ ├── ControllerFilter.cs │ │ ├── FilterData.cs │ │ ├── PhysicsLogic.cs │ │ ├── RealExplosion.cs │ │ └── SimpleExplosion.cs │ ├── PolygonManipulation │ │ ├── CuttingTools.cs │ │ ├── SimpleCombiner.cs │ │ ├── SimplifyTools.cs │ │ └── YuPengClipper.cs │ ├── PolygonTools.cs │ ├── Serialization.cs │ ├── TextureTools │ │ ├── MarchingSquares.cs │ │ ├── Terrain.cs │ │ └── TextureConverter.cs │ ├── Vector2.cs │ ├── Vector3.cs │ └── Vertices.cs ├── Controllers │ ├── AbstractForceController.cs │ ├── BuoyancyController.cs │ ├── Controller.cs │ ├── GravityController.cs │ ├── SimpleWindForce.cs │ └── VelocityLimitController.cs ├── Dynamics │ ├── Body.Factory.cs │ ├── Body.cs │ ├── BodyCollection.cs │ ├── BodyType.cs │ ├── Category.cs │ ├── ContactManager.cs │ ├── Contacts │ │ ├── Contact.cs │ │ ├── ContactListHead.cs │ │ └── ContactSolver.cs │ ├── ControllerCollection.cs │ ├── Fixture.cs │ ├── FixtureCollection.cs │ ├── FixtureProxy.cs │ ├── Island.cs │ ├── JointCollection.cs │ ├── Joints │ │ ├── AngleJoint.cs │ │ ├── DistanceJoint.cs │ │ ├── FixedMouseJoint.cs │ │ ├── FrictionJoint.cs │ │ ├── GearJoint.cs │ │ ├── Joint.cs │ │ ├── JointFactory.cs │ │ ├── MotorJoint.cs │ │ ├── PrismaticJoint.cs │ │ ├── PulleyJoint.cs │ │ ├── RevoluteJoint.cs │ │ ├── RopeJoint.cs │ │ ├── WeldJoint.cs │ │ └── WheelJoint.cs │ ├── SolverIterations.cs │ ├── TimeStep.cs │ ├── World.Factory.cs │ ├── World.cs │ └── WorldCallbacks.cs ├── ILLink.Descriptors.xml ├── Properties │ ├── AssemblyInfo.KNI.cs │ ├── AssemblyInfo.MG.cs │ ├── AssemblyInfo.NETSTANDARD20.cs │ └── AssemblyInfo.cs ├── README.md └── Settings.cs ├── README.md ├── Samples.KNI.sln ├── Samples.XNA.sln ├── Samples ├── HelloWorld.BlazorGL │ ├── App.razor │ ├── Game1.cs │ ├── HelloWorld.BlazorGL.csproj │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── Pages │ │ ├── Index.razor │ │ └── Index.razor.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── _Imports.razor │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ └── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── index.html │ │ ├── js │ │ └── decode.min.js │ │ ├── kni.png │ │ └── screenshot.png ├── HelloWorld.WindowsDX │ ├── Directory.Build.props │ ├── Game1.cs │ ├── HelloWorld.WINDOWS.KNI.csproj │ ├── Icon.ico │ └── Program.cs ├── HelloWorld │ ├── Background.png │ ├── Game.ico │ ├── Game1.cs │ ├── GameThumbnail.png │ ├── HelloWorld.WINDOWS.XNA.csproj │ ├── HelloWorld.projitems │ ├── HelloWorld.shproj │ ├── HelloWorldComponent.cs │ ├── PhoneGameThumb.png │ ├── Program.cs │ └── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml ├── HelloWorldContent │ ├── CircleSprite.png │ ├── Font.spritefont │ ├── GroundSprite.png │ ├── HelloWorldContent.contentproj │ └── HelloWorldContent.mgcb ├── NewSamples.WindowsDX │ ├── Directory.Build.props │ ├── Game1.cs │ ├── Icon.ico │ ├── NewSamples.WINDOWS.KNI.csproj │ └── Program.cs ├── NewSamples │ ├── Background.png │ ├── Demos │ │ ├── D01_SingleFixture.cs │ │ ├── D02_MultipleFixtures.cs │ │ ├── D03_StaticBodies.cs │ │ ├── D04_StackedBodies.cs │ │ ├── D05_CollisionCategories.cs │ │ ├── D06_Restitution.cs │ │ ├── D07_Friction.cs │ │ ├── D08_DistanceAngleJoint.cs │ │ ├── D09_DynamicJoints.cs │ │ ├── D10_Ragdoll.cs │ │ ├── D11_SoftBody.cs │ │ ├── D12_WebOfGoo.cs │ │ ├── D13_TheoJansenWalker.cs │ │ ├── D14_RacingCar.cs │ │ ├── D15_TextureToShapes.cs │ │ ├── D16_SVGtoPolygon.cs │ │ ├── D17_SVGtoBody.cs │ │ ├── D18_BreakableBody.cs │ │ └── Prefabs │ │ │ ├── Agent.cs │ │ │ ├── Border.cs │ │ │ ├── JumpySpider.cs │ │ │ ├── Objects.cs │ │ │ ├── Pyramid.cs │ │ │ ├── Ragdoll.cs │ │ │ ├── TheoJansenWalker.cs │ │ │ └── WebOfGoo.cs │ ├── Game.ico │ ├── Game1.cs │ ├── GameThumbnail.png │ ├── MediaSystem │ │ ├── ContentWrapper.cs │ │ ├── LineBatch.cs │ │ ├── QuadRenderer.cs │ │ └── Sprite.cs │ ├── NewSamples.WINDOWS.XNA.csproj │ ├── NewSamples.projitems │ ├── NewSamples.shproj │ ├── Program.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── ScreenSystem │ │ ├── BackgroundScreen.cs │ │ ├── Camera2D.cs │ │ ├── DescriptionBoxScreen.cs │ │ ├── FrameRateCounter.cs │ │ ├── GameScreen.cs │ │ ├── InputHelper.cs │ │ ├── LogoScreen.cs │ │ ├── MenuEntry.cs │ │ ├── MenuScreen.cs │ │ ├── MenuSlider.cs │ │ ├── OptionEntry.cs │ │ ├── OptionsScreen.cs │ │ └── PhysicsDemoScreen.cs │ └── app.config ├── NewSamplesContent │ ├── Common │ │ ├── Buttons.png │ │ ├── Checkmark.png │ │ ├── Cursor.png │ │ ├── Logo.png │ │ └── SamplesLogo.png │ ├── DemoGFX │ │ ├── Car.png │ │ ├── Club.png │ │ ├── Cookie.png │ │ ├── Diamond.png │ │ ├── Goo.png │ │ ├── Heart.png │ │ ├── Link.png │ │ ├── Logo.png │ │ ├── Spade.png │ │ ├── Wheel.png │ │ └── cookie_orig.png │ ├── DemoSFX │ │ └── Click.wav │ ├── Fonts │ │ ├── DetailsFont.spritefont │ │ └── MenuFont.spritefont │ ├── Materials │ │ ├── Square.png │ │ └── Stripe.png │ ├── NewSamplesContent.contentproj │ ├── NewSamplesContent.mgcb │ └── Pipeline │ │ ├── Body.svg │ │ ├── BreakableBody.svg │ │ ├── Object.png │ │ └── Polygon.svg ├── Samples.BlazorGL │ ├── App.razor │ ├── Game1.cs │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── Pages │ │ ├── Index.razor │ │ └── Index.razor.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Samples.BlazorGL.csproj │ ├── _Imports.razor │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ └── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── index.html │ │ ├── js │ │ └── decode.min.js │ │ ├── kni.png │ │ └── screenshot.png ├── Samples.WindowsDX │ ├── Directory.Build.props │ ├── Game1.cs │ ├── Icon.ico │ ├── Program.cs │ └── Samples.WINDOWS.KNI.csproj ├── Samples │ ├── Background.png │ ├── Demos │ │ ├── AdvancedDemo1.cs │ │ ├── AdvancedDemo2.cs │ │ ├── AdvancedDemo3.cs │ │ ├── AdvancedDemo4.cs │ │ ├── AdvancedDemo5.cs │ │ ├── AdvancedDemo6.cs │ │ ├── GameDemo1.cs │ │ ├── Prefabs │ │ │ ├── Agent.cs │ │ │ ├── Border.cs │ │ │ ├── Objects.cs │ │ │ ├── Pyramid.cs │ │ │ ├── Ragdoll.cs │ │ │ ├── Spider.cs │ │ │ ├── Spiderweb.cs │ │ │ └── TheoJansen.cs │ │ ├── SimpleDemo1.cs │ │ ├── SimpleDemo10.cs │ │ ├── SimpleDemo2.cs │ │ ├── SimpleDemo3.cs │ │ ├── SimpleDemo4.cs │ │ ├── SimpleDemo5.cs │ │ ├── SimpleDemo6.cs │ │ ├── SimpleDemo7.cs │ │ ├── SimpleDemo8.cs │ │ └── SimpleDemo9.cs │ ├── DrawingSystem │ │ ├── AssetCreator.cs │ │ ├── LineBatch.cs │ │ ├── ShadowBatch.cs │ │ ├── ShadowMap2D.cs │ │ └── Sprite.cs │ ├── Game.ico │ ├── Game1.cs │ ├── GameThumbnail.png │ ├── PhoneGameThumb.png │ ├── Program.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── Samples.WINDOWS.XNA.csproj │ ├── Samples.projitems │ ├── Samples.shproj │ └── ScreenSystem │ │ ├── BackgroundScreen.cs │ │ ├── Camera2D.cs │ │ ├── FramerateCounterComponent.cs │ │ ├── GameScreen.cs │ │ ├── IDemoScreen.cs │ │ ├── InputHelper.cs │ │ ├── LogoScreen.cs │ │ ├── MenuButton.cs │ │ ├── MenuEntry.cs │ │ ├── MenuScreen.cs │ │ ├── MessageBoxScreen.cs │ │ ├── PhysicsGameScreen.cs │ │ ├── ScreenManagerComponent.cs │ │ ├── SpriteFonts.cs │ │ ├── VirtualButton.cs │ │ └── VirtualStick.cs ├── SamplesContent │ ├── Common │ │ ├── arrow.png │ │ ├── buttons.png │ │ ├── cursor.png │ │ ├── gradient.png │ │ ├── logo.png │ │ ├── popup.png │ │ ├── slider.png │ │ ├── socket.png │ │ └── stick.png │ ├── Effects │ │ ├── LightEffect.fx │ │ └── Macros.fxh │ ├── Fonts │ │ ├── detailsFont.spritefont │ │ ├── frameRateCounterFont.spritefont │ │ └── menufont.spritefont │ ├── Materials │ │ ├── blank.png │ │ ├── dots.png │ │ ├── pavement.png │ │ ├── squares.png │ │ └── waves.png │ ├── Samples │ │ ├── alphabet.png │ │ ├── car.png │ │ ├── goo.png │ │ ├── link.png │ │ ├── object.png │ │ └── wheel.png │ ├── SamplesContent.contentproj │ └── SamplesContent.mgcb ├── Testbed.WindowsDX │ ├── Directory.Build.props │ ├── Game.ico │ ├── Game1.cs │ ├── Icon.ico │ ├── Program.cs │ └── Testbed.WINDOWS.KNI.csproj ├── Testbed │ ├── Background.png │ ├── Data │ │ ├── 2.dat │ │ ├── bird.dat │ │ ├── debug.dat │ │ ├── diamond.dat │ │ ├── dude.dat │ │ ├── funny.dat │ │ ├── kzer-za.dat │ │ ├── nazca_monkey.dat │ │ ├── star.dat │ │ └── strange.dat │ ├── Framework │ │ ├── ControlPanel.cs │ │ ├── GameSettings.cs │ │ ├── InputState.cs │ │ ├── Rand.cs │ │ ├── Test.cs │ │ └── TestEntry.cs │ ├── Game.ico │ ├── Game1.cs │ ├── GameThumbnail.png │ ├── Program.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── TestBed.WINDOWS.XNA.csproj │ ├── Testbed.projitems │ ├── Testbed.shproj │ └── Tests │ │ ├── AddPairTest.cs │ │ ├── AngleJointTest.cs │ │ ├── ApplyForceTest.cs │ │ ├── BodyPoolTest.cs │ │ ├── BodyTypesTest.cs │ │ ├── BoidsTest.cs │ │ ├── BreakableBodyTest.cs │ │ ├── BreakableTest.cs │ │ ├── BridgeTest.cs │ │ ├── BulletTest.cs │ │ ├── BuoyancyTest.cs │ │ ├── CantileverTest.cs │ │ ├── CarTest.cs │ │ ├── ChainTest.cs │ │ ├── CharacterCollisionTest.cs │ │ ├── CheckPolygonTest.cs │ │ ├── CircleBenchmarkTest.cs │ │ ├── CirclePenetrationTest.cs │ │ ├── CloneTest.cs │ │ ├── CollisionFilteringTest.cs │ │ ├── CollisionProcessingTest.cs │ │ ├── CollisionTest.cs │ │ ├── CompoundShapesTest.cs │ │ ├── ConfinedTest.cs │ │ ├── ContinuousTest.cs │ │ ├── ConvexHullTest.cs │ │ ├── ConvexHullTest2.cs │ │ ├── ConveyorBeltTest.cs │ │ ├── CuttingTest.cs │ │ ├── DeletionTest.cs │ │ ├── DestructibleTerrainTest.cs │ │ ├── DistanceTest.cs │ │ ├── DominosTest.cs │ │ ├── DynamicTreeTest.cs │ │ ├── EdgeShapeBenchmarkTest.cs │ │ ├── EdgeShapesTest.cs │ │ ├── EdgeTest.cs │ │ ├── ExplosionTest.cs │ │ ├── GearsTest.cs │ │ ├── GravityControllerTest.cs │ │ ├── MobileBalancedTest.cs │ │ ├── MobileTest.cs │ │ ├── MotorJointTest.cs │ │ ├── Multithread1Test.cs │ │ ├── Multithread2Test.cs │ │ ├── MultithreadWorldsTest.cs │ │ ├── OneSidedPlatformTest.cs │ │ ├── PathTest.cs │ │ ├── PinballTest.cs │ │ ├── PolyCollisionTest.cs │ │ ├── PolyShapesTest.cs │ │ ├── PrismaticTest.cs │ │ ├── PulleysTest.cs │ │ ├── PyramidTest.cs │ │ ├── RaycastTest.cs │ │ ├── RevoluteTest.cs │ │ ├── RopeTest.cs │ │ ├── RoundedRectangle.cs │ │ ├── SensorTest.cs │ │ ├── SerializationTest.cs │ │ ├── ShapeEditingTest.cs │ │ ├── SimpleWindForceTest.cs │ │ ├── SimplificationTest.cs │ │ ├── SliderCrankTest.cs │ │ ├── SparseBodiesTest.cs │ │ ├── SparseBodiesWithManyFixturesTest.cs │ │ ├── SphereStackTest.cs │ │ ├── TestEntries.cs │ │ ├── TextureVerticesTest.cs │ │ ├── TheLeaningTowerofLireTest.cs │ │ ├── TheoJansenTest.cs │ │ ├── TilesTest.cs │ │ ├── TimeOfImpactTest.cs │ │ ├── TriangulationTest.cs │ │ ├── TumblerTest.cs │ │ ├── VaryingFrictionTest.cs │ │ ├── VaryingRestitutionTest.cs │ │ ├── VerticalStackTest.cs │ │ ├── WebTest.cs │ │ └── YuPengPolygonTest.cs └── TestbedContent │ ├── Pixel.png │ ├── Rock.png │ ├── Terrain.png │ ├── TestBedContent.contentproj │ ├── TestBedContent.mgcb │ └── Texture.png ├── docs ├── .nojekyll ├── Documentation │ └── 2.0 │ │ ├── NugetLogo.png │ │ ├── annotated.html │ │ ├── annotated_dup.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── classes.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_input-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_input.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_input.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_input__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_input__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_input__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe438470b455a575001521245634e54d8a.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe6c1bdd9899af65c9dfb05bcafbfb6a2f.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe7351699e28294e84d5ae07f21e9b2f9a.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe7351699e28294e84d5ae07f21e9b2f9a.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe7351699e28294e84d5ae07f21e9b2f9a.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe7d6d5cb3bb36c85438bbf842780964bb.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe8ab7159db6ff80fffad86be43e940473.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_sweedbf4abf82be9fa9cbcc94dced18d340.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_sweedbf4abf82be9fa9cbcc94dced18d340.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_sweedbf4abf82be9fa9cbcc94dced18d340.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_path-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_path.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_path.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_breakable_body-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_breakable_body.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_breakable_body.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_filter_data-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_filter_data.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_filter_data.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_filter_data__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_filter_data__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_filter_data__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_terrain-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_terrain.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_terrain.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_terrain__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_terrain__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_terrain__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_texture_converter-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_texture_converter.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_texture_converter.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contact_manager-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contact_manager.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contact_manager.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contact_manager__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contact_manager__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contact_manager__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_edge-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_edge.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_edge.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_position_constraint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_position_constraint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_position_constraint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_position_constraint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_position_constraint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_position_constraint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_solver-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_solver.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_solver.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_solver__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_solver__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_solver__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_velocity_constraint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_velocity_constraint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_velocity_constraint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_velocity_constraint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_velocity_constraint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_velocity_constraint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_velocity_constraint_point-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_velocity_constraint_point.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_velocity_constraint_point.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_velocity_constraint_point__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_velocity_constraint_point__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_velocity_constraint_point__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_island-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_island.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_island.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_island__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_island__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_island__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint_edge-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint_edge.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint_edge.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint_edge__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint_edge__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint_edge__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__coll__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__inherit__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__inherit__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__inherit__graph.svg │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_world-members.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_world.html │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_world.js │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_world__coll__graph.map │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_world__coll__graph.md5 │ │ ├── classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_world__coll__graph.svg │ │ ├── closed.png │ │ ├── dir_0e1029dfd013b058d543644acd0717bc.html │ │ ├── dir_23fdfceae895dcb338a941e1d7344a92.html │ │ ├── dir_277c0e9c6be012641b9dccf6e2b967c8.html │ │ ├── dir_3778aaf54157dd263127683dd4bacac9.html │ │ ├── dir_43dce756a2a5bbdec80603087f8e5e95.html │ │ ├── dir_467ec770951959479211ac6ddf2b8c6f.html │ │ ├── dir_5150cc52956511ea54c968043e6601c5.html │ │ ├── dir_53ee7dc8115cc3fab084306a5c4904d8.html │ │ ├── dir_5a5696634c3b737a94da0d790f0cde8d.html │ │ ├── dir_61fc533d2b0d211ae45dbb715e7f6856.html │ │ ├── dir_701d4d157daf637bd31d70cb7efcb8a9.html │ │ ├── dir_7f9a1e54ae33dc25921372d1ac6b6298.html │ │ ├── dir_a88b9a141032021f574d50b3e6d439b5.html │ │ ├── dir_bcfc156f6f2a78c8313299bbd03aaaf6.html │ │ ├── dir_c15d829c758f8cde2e79963fa3ad8abd.html │ │ ├── dir_c6031ab5f49f0d41206f3dbaca0805ac.html │ │ ├── dir_d00b72c0a85a238b6c5d219f70aa9fa3.html │ │ ├── dir_d5e8eff7b347d394f77f526e0e6653c4.html │ │ ├── dir_e76b6f991c16c70c91d5cf48c50ef8ce.html │ │ ├── dir_ed7d350bffbd4947f60f0b5c888c922c.html │ │ ├── dir_f188a439b58cd88a9f7a59fad5baa8d0.html │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.svg │ │ ├── dynsections.js │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── functions.html │ │ ├── functions_b.html │ │ ├── functions_c.html │ │ ├── functions_d.html │ │ ├── functions_dup.js │ │ ├── functions_e.html │ │ ├── functions_enum.html │ │ ├── functions_evnt.html │ │ ├── functions_f.html │ │ ├── functions_func.html │ │ ├── functions_func.js │ │ ├── functions_func_b.html │ │ ├── functions_func_c.html │ │ ├── functions_func_d.html │ │ ├── functions_func_e.html │ │ ├── functions_func_f.html │ │ ├── functions_func_g.html │ │ ├── functions_func_i.html │ │ ├── functions_func_j.html │ │ ├── functions_func_m.html │ │ ├── functions_func_n.html │ │ ├── functions_func_o.html │ │ ├── functions_func_p.html │ │ ├── functions_func_q.html │ │ ├── functions_func_r.html │ │ ├── functions_func_s.html │ │ ├── functions_func_t.html │ │ ├── functions_func_u.html │ │ ├── functions_func_v.html │ │ ├── functions_func_w.html │ │ ├── functions_g.html │ │ ├── functions_h.html │ │ ├── functions_i.html │ │ ├── functions_j.html │ │ ├── functions_k.html │ │ ├── functions_l.html │ │ ├── functions_m.html │ │ ├── functions_n.html │ │ ├── functions_o.html │ │ ├── functions_p.html │ │ ├── functions_prop.html │ │ ├── functions_q.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_t.html │ │ ├── functions_u.html │ │ ├── functions_v.html │ │ ├── functions_vars.html │ │ ├── functions_w.html │ │ ├── hierarchy.html │ │ ├── hierarchy.js │ │ ├── index.html │ │ ├── inherit_graph_0.map │ │ ├── inherit_graph_0.md5 │ │ ├── inherit_graph_0.svg │ │ ├── inherit_graph_1.map │ │ ├── inherit_graph_1.md5 │ │ ├── inherit_graph_1.svg │ │ ├── inherit_graph_10.map │ │ ├── inherit_graph_10.md5 │ │ ├── inherit_graph_10.svg │ │ ├── inherit_graph_11.map │ │ ├── inherit_graph_11.md5 │ │ ├── inherit_graph_11.svg │ │ ├── inherit_graph_12.map │ │ ├── inherit_graph_12.md5 │ │ ├── inherit_graph_12.svg │ │ ├── inherit_graph_13.map │ │ ├── inherit_graph_13.md5 │ │ ├── inherit_graph_13.svg │ │ ├── inherit_graph_14.map │ │ ├── inherit_graph_14.md5 │ │ ├── inherit_graph_14.svg │ │ ├── inherit_graph_15.map │ │ ├── inherit_graph_15.md5 │ │ ├── inherit_graph_15.svg │ │ ├── inherit_graph_16.map │ │ ├── inherit_graph_16.md5 │ │ ├── inherit_graph_16.svg │ │ ├── inherit_graph_17.map │ │ ├── inherit_graph_17.md5 │ │ ├── inherit_graph_17.svg │ │ ├── inherit_graph_18.map │ │ ├── inherit_graph_18.md5 │ │ ├── inherit_graph_18.svg │ │ ├── inherit_graph_19.map │ │ ├── inherit_graph_19.md5 │ │ ├── inherit_graph_19.svg │ │ ├── inherit_graph_2.map │ │ ├── inherit_graph_2.md5 │ │ ├── inherit_graph_2.svg │ │ ├── inherit_graph_20.map │ │ ├── inherit_graph_20.md5 │ │ ├── inherit_graph_20.svg │ │ ├── inherit_graph_21.map │ │ ├── inherit_graph_21.md5 │ │ ├── inherit_graph_21.svg │ │ ├── inherit_graph_22.map │ │ ├── inherit_graph_22.md5 │ │ ├── inherit_graph_22.svg │ │ ├── inherit_graph_23.map │ │ ├── inherit_graph_23.md5 │ │ ├── inherit_graph_23.svg │ │ ├── inherit_graph_24.map │ │ ├── inherit_graph_24.md5 │ │ ├── inherit_graph_24.svg │ │ ├── inherit_graph_25.map │ │ ├── inherit_graph_25.md5 │ │ ├── inherit_graph_25.svg │ │ ├── inherit_graph_26.map │ │ ├── inherit_graph_26.md5 │ │ ├── inherit_graph_26.svg │ │ ├── inherit_graph_27.map │ │ ├── inherit_graph_27.md5 │ │ ├── inherit_graph_27.svg │ │ ├── inherit_graph_28.map │ │ ├── inherit_graph_28.md5 │ │ ├── inherit_graph_28.svg │ │ ├── inherit_graph_29.map │ │ ├── inherit_graph_29.md5 │ │ ├── inherit_graph_29.svg │ │ ├── inherit_graph_3.map │ │ ├── inherit_graph_3.md5 │ │ ├── inherit_graph_3.svg │ │ ├── inherit_graph_30.map │ │ ├── inherit_graph_30.md5 │ │ ├── inherit_graph_30.svg │ │ ├── inherit_graph_31.map │ │ ├── inherit_graph_31.md5 │ │ ├── inherit_graph_31.svg │ │ ├── inherit_graph_32.map │ │ ├── inherit_graph_32.md5 │ │ ├── inherit_graph_32.svg │ │ ├── inherit_graph_33.map │ │ ├── inherit_graph_33.md5 │ │ ├── inherit_graph_33.svg │ │ ├── inherit_graph_34.map │ │ ├── inherit_graph_34.md5 │ │ ├── inherit_graph_34.svg │ │ ├── inherit_graph_35.map │ │ ├── inherit_graph_35.md5 │ │ ├── inherit_graph_35.svg │ │ ├── inherit_graph_36.map │ │ ├── inherit_graph_36.md5 │ │ ├── inherit_graph_36.svg │ │ ├── inherit_graph_37.map │ │ ├── inherit_graph_37.md5 │ │ ├── inherit_graph_37.svg │ │ ├── inherit_graph_38.map │ │ ├── inherit_graph_38.md5 │ │ ├── inherit_graph_38.svg │ │ ├── inherit_graph_39.map │ │ ├── inherit_graph_39.md5 │ │ ├── inherit_graph_39.svg │ │ ├── inherit_graph_4.map │ │ ├── inherit_graph_4.md5 │ │ ├── inherit_graph_4.svg │ │ ├── inherit_graph_40.map │ │ ├── inherit_graph_40.md5 │ │ ├── inherit_graph_40.svg │ │ ├── inherit_graph_41.map │ │ ├── inherit_graph_41.md5 │ │ ├── inherit_graph_41.svg │ │ ├── inherit_graph_42.map │ │ ├── inherit_graph_42.md5 │ │ ├── inherit_graph_42.svg │ │ ├── inherit_graph_43.map │ │ ├── inherit_graph_43.md5 │ │ ├── inherit_graph_43.svg │ │ ├── inherit_graph_44.map │ │ ├── inherit_graph_44.md5 │ │ ├── inherit_graph_44.svg │ │ ├── inherit_graph_45.map │ │ ├── inherit_graph_45.md5 │ │ ├── inherit_graph_45.svg │ │ ├── inherit_graph_46.map │ │ ├── inherit_graph_46.md5 │ │ ├── inherit_graph_46.svg │ │ ├── inherit_graph_47.map │ │ ├── inherit_graph_47.md5 │ │ ├── inherit_graph_47.svg │ │ ├── inherit_graph_48.map │ │ ├── inherit_graph_48.md5 │ │ ├── inherit_graph_48.svg │ │ ├── inherit_graph_49.map │ │ ├── inherit_graph_49.md5 │ │ ├── inherit_graph_49.svg │ │ ├── inherit_graph_5.map │ │ ├── inherit_graph_5.md5 │ │ ├── inherit_graph_5.svg │ │ ├── inherit_graph_50.map │ │ ├── inherit_graph_50.md5 │ │ ├── inherit_graph_50.svg │ │ ├── inherit_graph_51.map │ │ ├── inherit_graph_51.md5 │ │ ├── inherit_graph_51.svg │ │ ├── inherit_graph_52.map │ │ ├── inherit_graph_52.md5 │ │ ├── inherit_graph_52.svg │ │ ├── inherit_graph_53.map │ │ ├── inherit_graph_53.md5 │ │ ├── inherit_graph_53.svg │ │ ├── inherit_graph_54.map │ │ ├── inherit_graph_54.md5 │ │ ├── inherit_graph_54.svg │ │ ├── inherit_graph_55.map │ │ ├── inherit_graph_55.md5 │ │ ├── inherit_graph_55.svg │ │ ├── inherit_graph_56.map │ │ ├── inherit_graph_56.md5 │ │ ├── inherit_graph_56.svg │ │ ├── inherit_graph_6.map │ │ ├── inherit_graph_6.md5 │ │ ├── inherit_graph_6.svg │ │ ├── inherit_graph_7.map │ │ ├── inherit_graph_7.md5 │ │ ├── inherit_graph_7.svg │ │ ├── inherit_graph_8.map │ │ ├── inherit_graph_8.md5 │ │ ├── inherit_graph_8.svg │ │ ├── inherit_graph_9.map │ │ ├── inherit_graph_9.md5 │ │ ├── inherit_graph_9.svg │ │ ├── inherits.html │ │ ├── interfacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_i_broad_phase-members.html │ │ ├── interfacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_i_broad_phase.html │ │ ├── interfacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_i_broad_phase.js │ │ ├── interfacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_i_broad_phase__inherit__graph.map │ │ ├── interfacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_i_broad_phase__inherit__graph.md5 │ │ ├── interfacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_i_broad_phase__inherit__graph.svg │ │ ├── jquery.js │ │ ├── namespacemembers.html │ │ ├── namespacemembers_enum.html │ │ ├── namespacemembers_func.html │ │ ├── namespacenkast.html │ │ ├── namespacenkast.js │ │ ├── namespacenkast_1_1_aether.html │ │ ├── namespacenkast_1_1_aether.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_collision.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_collision.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_convex_hull.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_sweep.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_polygon.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_sets.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_util.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_seidel.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_polygon_manipulation.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_controllers.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_controllers.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_dynamics.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_dynamics.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts.js │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints.html │ │ ├── namespacenkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints.js │ │ ├── namespaces.html │ │ ├── namespaces_dup.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreedata.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── navtreeindex4.js │ │ ├── navtreeindex5.js │ │ ├── open.png │ │ ├── resize.js │ │ ├── splitbar.png │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_a_a_b_b-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_a_a_b_b.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_a_a_b_b.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_a_a_b_b__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_a_a_b_b__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_a_a_b_b__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_feature-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_feature.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_feature.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_input-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_input.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_input.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_input__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_input__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_input__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_output-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_output.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_output.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_output__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_output__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_output__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_e_p_axis-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_e_p_axis.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_e_p_axis.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold_point-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold_point.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold_point.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold_point__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold_point__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold_point__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_reference_face-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_reference_face.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_reference_face.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_reference_face__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_reference_face__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_reference_face__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__inherit__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__inherit__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__inherit__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_simplex_cache-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_simplex_cache.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_simplex_cache.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_simplex_cache__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_simplex_cache__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_simplex_cache__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_output-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_output.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_output.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_complex-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_complex.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_complex.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array2-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array2.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array2.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array3-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array3.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array3.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array4-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array4.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array4.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array8-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array8.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array8.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat22-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat22.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat22.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat22__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat22__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat22__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat33-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat33.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat33.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat33__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat33__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat33__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_controller_filter-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_controller_filter.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_controller_filter.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_sweep-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_sweep.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_sweep.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_sweep__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_sweep__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_sweep__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_transform-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_transform.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_transform.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_transform__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_transform__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_transform__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__inherit__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__inherit__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__inherit__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__inherit__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__inherit__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__inherit__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__inherit__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__inherit__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__inherit__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__inherit__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__inherit__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__inherit__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__inherit__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__inherit__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__inherit__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_proxy-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_proxy.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_proxy.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_proxy__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_proxy__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_proxy__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator.js │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__coll__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__coll__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__coll__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__inherit__graph.map │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__inherit__graph.md5 │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__inherit__graph.svg │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_solver_iterations-members.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_solver_iterations.html │ │ ├── structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_solver_iterations.js │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css ├── favicon.png ├── images │ ├── 3DCameraDemo.png │ ├── LightAndShadowsDemo.png │ └── Logo.png ├── index.html └── wasm │ ├── HelloWorld │ ├── Content │ │ ├── CircleSprite.xnb │ │ ├── Font.xnb │ │ └── GroundSprite.xnb │ ├── HelloWorld.styles.css │ ├── _content │ │ ├── nkast.Wasm.Audio │ │ │ └── js │ │ │ │ └── Audio.8.0.1.js │ │ ├── nkast.Wasm.Canvas │ │ │ └── js │ │ │ │ ├── Canvas.8.0.1.js │ │ │ │ ├── Canvas2dContext.8.0.1.js │ │ │ │ └── CanvasGLContext.8.0.1.js │ │ ├── nkast.Wasm.Dom │ │ │ └── js │ │ │ │ ├── Document.8.0.1.js │ │ │ │ ├── Gamepad.8.0.1.js │ │ │ │ ├── JSObject.8.0.1.js │ │ │ │ ├── Media.8.0.1.js │ │ │ │ ├── Navigator.8.0.1.js │ │ │ │ └── Window.8.0.1.js │ │ └── nkast.Wasm.XHR │ │ │ └── js │ │ │ └── XHR.8.0.1.js │ ├── _framework │ │ ├── Aether.Physics2D.wasm.br │ │ ├── HelloWorld.wasm.br │ │ ├── Microsoft.AspNetCore.Components.Web.wasm.br │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.wasm.br │ │ ├── Microsoft.AspNetCore.Components.wasm.br │ │ ├── Microsoft.Extensions.Configuration.Abstractions.wasm.br │ │ ├── Microsoft.Extensions.Configuration.Json.wasm.br │ │ ├── Microsoft.Extensions.Configuration.wasm.br │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.wasm.br │ │ ├── Microsoft.Extensions.DependencyInjection.wasm.br │ │ ├── Microsoft.Extensions.Logging.Abstractions.wasm.br │ │ ├── Microsoft.Extensions.Logging.wasm.br │ │ ├── Microsoft.Extensions.Options.wasm.br │ │ ├── Microsoft.Extensions.Primitives.wasm.br │ │ ├── Microsoft.JSInterop.WebAssembly.wasm.br │ │ ├── Microsoft.JSInterop.wasm.br │ │ ├── MonoGame.Framework.wasm.br │ │ ├── System.Collections.Concurrent.wasm.br │ │ ├── System.Collections.NonGeneric.wasm.br │ │ ├── System.Collections.Specialized.wasm.br │ │ ├── System.Collections.wasm.br │ │ ├── System.ComponentModel.Primitives.wasm.br │ │ ├── System.ComponentModel.wasm.br │ │ ├── System.Console.wasm.br │ │ ├── System.Diagnostics.DiagnosticSource.wasm.br │ │ ├── System.Diagnostics.TraceSource.wasm.br │ │ ├── System.Linq.Expressions.wasm.br │ │ ├── System.Linq.wasm.br │ │ ├── System.Memory.wasm.br │ │ ├── System.Net.Http.wasm.br │ │ ├── System.Net.Primitives.wasm.br │ │ ├── System.ObjectModel.wasm.br │ │ ├── System.Private.CoreLib.wasm.br │ │ ├── System.Private.Uri.wasm.br │ │ ├── System.Private.Xml.wasm.br │ │ ├── System.Runtime.InteropServices.JavaScript.wasm.br │ │ ├── System.Runtime.Serialization.Primitives.wasm.br │ │ ├── System.Runtime.wasm.br │ │ ├── System.Security.Cryptography.wasm.br │ │ ├── System.Text.Encodings.Web.wasm.br │ │ ├── System.Text.Json.wasm.br │ │ ├── System.Text.RegularExpressions.wasm.br │ │ ├── System.Threading.wasm.br │ │ ├── System.Xml.ReaderWriter.wasm.br │ │ ├── System.Xml.XmlSerializer.wasm.br │ │ ├── Xna.Framework.Audio.wasm.br │ │ ├── Xna.Framework.Content.wasm.br │ │ ├── Xna.Framework.Game.wasm.br │ │ ├── Xna.Framework.Graphics.wasm.br │ │ ├── Xna.Framework.Input.wasm.br │ │ ├── Xna.Framework.Media.wasm.br │ │ ├── Xna.Framework.wasm.br │ │ ├── blazor.boot.json.br │ │ ├── blazor.webassembly.js │ │ ├── dotnet.js │ │ ├── dotnet.native.8.0.7.5xbbu16zlk.js │ │ ├── dotnet.native.wasm.br │ │ ├── dotnet.runtime.8.0.7.urcsr75yt5.js │ │ ├── icudt_CJK.dat.br │ │ ├── icudt_EFIGS.dat.br │ │ ├── icudt_no_CJK.dat.br │ │ ├── nkast.Wasm.Audio.wasm.br │ │ ├── nkast.Wasm.Canvas.wasm.br │ │ ├── nkast.Wasm.Dom.wasm.br │ │ └── nkast.Wasm.XHR.wasm.br │ ├── css │ │ ├── app.css │ │ └── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ ├── favicon.png │ ├── index.html │ ├── js │ │ └── decode.min.js │ ├── kni.png │ └── screenshot.png │ └── Samples │ ├── Content │ ├── Common │ │ ├── arrow.xnb │ │ ├── buttons.xnb │ │ ├── cursor.xnb │ │ ├── gradient.xnb │ │ ├── logo.xnb │ │ ├── popup.xnb │ │ ├── slider.xnb │ │ ├── socket.xnb │ │ └── stick.xnb │ ├── DiagnosticsFont.xnb │ ├── Effects │ │ └── LightEffect.xnb │ ├── Fonts │ │ ├── detailsFont.xnb │ │ ├── frameRateCounterFont.xnb │ │ └── menuFont.xnb │ ├── Materials │ │ ├── blank.xnb │ │ ├── dots.xnb │ │ ├── pavement.xnb │ │ ├── squares.xnb │ │ └── waves.xnb │ └── Samples │ │ ├── alphabet.xnb │ │ ├── car.xnb │ │ ├── goo.xnb │ │ ├── link.xnb │ │ ├── object.xnb │ │ └── wheel.xnb │ ├── Samples.styles.css │ ├── _content │ ├── nkast.Wasm.Audio │ │ └── js │ │ │ └── Audio.8.0.1.js │ ├── nkast.Wasm.Canvas │ │ └── js │ │ │ ├── Canvas.8.0.1.js │ │ │ ├── Canvas2dContext.8.0.1.js │ │ │ └── CanvasGLContext.8.0.1.js │ ├── nkast.Wasm.Dom │ │ └── js │ │ │ ├── Document.8.0.1.js │ │ │ ├── Gamepad.8.0.1.js │ │ │ ├── JSObject.8.0.1.js │ │ │ ├── Media.8.0.1.js │ │ │ ├── Navigator.8.0.1.js │ │ │ └── Window.8.0.1.js │ └── nkast.Wasm.XHR │ │ └── js │ │ └── XHR.8.0.1.js │ ├── _framework │ ├── Aether.Physics2D.Diagnostics.wasm.br │ ├── Aether.Physics2D.wasm.br │ ├── Microsoft.AspNetCore.Components.Web.wasm.br │ ├── Microsoft.AspNetCore.Components.WebAssembly.wasm.br │ ├── Microsoft.AspNetCore.Components.wasm.br │ ├── Microsoft.Extensions.Configuration.Abstractions.wasm.br │ ├── Microsoft.Extensions.Configuration.Json.wasm.br │ ├── Microsoft.Extensions.Configuration.wasm.br │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.wasm.br │ ├── Microsoft.Extensions.DependencyInjection.wasm.br │ ├── Microsoft.Extensions.Logging.Abstractions.wasm.br │ ├── Microsoft.Extensions.Logging.wasm.br │ ├── Microsoft.Extensions.Options.wasm.br │ ├── Microsoft.Extensions.Primitives.wasm.br │ ├── Microsoft.JSInterop.WebAssembly.wasm.br │ ├── Microsoft.JSInterop.wasm.br │ ├── MonoGame.Framework.wasm.br │ ├── Samples.wasm.br │ ├── System.Collections.Concurrent.wasm.br │ ├── System.Collections.NonGeneric.wasm.br │ ├── System.Collections.Specialized.wasm.br │ ├── System.Collections.wasm.br │ ├── System.ComponentModel.Primitives.wasm.br │ ├── System.ComponentModel.wasm.br │ ├── System.Console.wasm.br │ ├── System.Diagnostics.DiagnosticSource.wasm.br │ ├── System.Diagnostics.TraceSource.wasm.br │ ├── System.Linq.Expressions.wasm.br │ ├── System.Linq.wasm.br │ ├── System.Memory.wasm.br │ ├── System.Net.Http.wasm.br │ ├── System.Net.Primitives.wasm.br │ ├── System.ObjectModel.wasm.br │ ├── System.Private.CoreLib.wasm.br │ ├── System.Private.Uri.wasm.br │ ├── System.Private.Xml.wasm.br │ ├── System.Runtime.InteropServices.JavaScript.wasm.br │ ├── System.Runtime.Serialization.Primitives.wasm.br │ ├── System.Runtime.wasm.br │ ├── System.Security.Cryptography.wasm.br │ ├── System.Text.Encodings.Web.wasm.br │ ├── System.Text.Json.wasm.br │ ├── System.Text.RegularExpressions.wasm.br │ ├── System.Threading.wasm.br │ ├── System.Xml.ReaderWriter.wasm.br │ ├── System.Xml.XmlSerializer.wasm.br │ ├── Xna.Framework.Audio.wasm.br │ ├── Xna.Framework.Content.wasm.br │ ├── Xna.Framework.Game.wasm.br │ ├── Xna.Framework.Graphics.wasm.br │ ├── Xna.Framework.Input.wasm.br │ ├── Xna.Framework.Media.wasm.br │ ├── Xna.Framework.wasm.br │ ├── blazor.boot.json.br │ ├── blazor.webassembly.js │ ├── dotnet.js │ ├── dotnet.native.8.0.7.03mfkt6rh3.js │ ├── dotnet.native.wasm.br │ ├── dotnet.runtime.8.0.7.urcsr75yt5.js │ ├── icudt_CJK.dat.br │ ├── icudt_EFIGS.dat.br │ ├── icudt_no_CJK.dat.br │ ├── nkast.Wasm.Audio.wasm.br │ ├── nkast.Wasm.Canvas.wasm.br │ ├── nkast.Wasm.Dom.wasm.br │ └── nkast.Wasm.XHR.wasm.br │ ├── css │ ├── app.css │ └── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── favicon.ico │ ├── favicon.png │ ├── index.html │ ├── js │ └── decode.min.js │ ├── kni.png │ └── screenshot.png ├── doxy └── pack.bat /Build.bat: -------------------------------------------------------------------------------- 1 | dotnet build Aether.Physics2D.sln /t:restore /p:Configuration=Release 2 | dotnet build Aether.Physics2D.sln /t:Build /p:Configuration=Release 3 | 4 | dotnet build Aether.Physics2D.KNI.sln /t:restore /p:Configuration=Release 5 | dotnet build Aether.Physics2D.KNI.sln /t:Build /p:Configuration=Release 6 | 7 | dotnet build Aether.Physics2D.MG.sln /t:restore /p:Configuration=Release 8 | dotnet build Aether.Physics2D.MG.sln /t:Build /p:Configuration=Release 9 | 10 | @pause 11 | -------------------------------------------------------------------------------- /Content.Pipeline/Physics2DImporters/BodyContainerContent.cs: -------------------------------------------------------------------------------- 1 | /* Original source Farseer Physics Engine: 2 | * Copyright (c) 2014 Ian Qvist, http://farseerphysics.codeplex.com 3 | * Microsoft Permissive License (Ms-PL) v1.1 4 | */ 5 | 6 | using System.Collections.Generic; 7 | using Microsoft.Xna.Framework; 8 | using nkast.Aether.Physics2D.Collision.Shapes; 9 | using nkast.Aether.Physics2D.Dynamics; 10 | 11 | namespace nkast.Aether.Content.Pipeline 12 | { 13 | public class BodyContainerContent : Dictionary 14 | { 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Content.Pipeline/Physics2DImporters/RawBodyTemplateContent.cs: -------------------------------------------------------------------------------- 1 | /* Original source Farseer Physics Engine: 2 | * Copyright (c) 2014 Ian Qvist, http://farseerphysics.codeplex.com 3 | * Microsoft Permissive License (Ms-PL) v1.1 4 | */ 5 | 6 | using System.Collections.Generic; 7 | using Microsoft.Xna.Framework; 8 | using nkast.Aether.Physics2D.Dynamics; 9 | 10 | namespace nkast.Aether.Content.Pipeline 11 | { 12 | struct RawBodyTemplateContent 13 | { 14 | public List Fixtures; 15 | public string Name; 16 | public float Mass; 17 | public BodyType BodyType; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /Content.Pipeline/Physics2DImporters/RawFixtureTemplateContent.cs: -------------------------------------------------------------------------------- 1 | /* Original source Farseer Physics Engine: 2 | * Copyright (c) 2014 Ian Qvist, http://farseerphysics.codeplex.com 3 | * Microsoft Permissive License (Ms-PL) v1.1 4 | */ 5 | 6 | using System.Collections.Generic; 7 | using Microsoft.Xna.Framework; 8 | 9 | namespace nkast.Aether.Content.Pipeline 10 | { 11 | struct RawFixtureTemplateContent 12 | { 13 | public string Path; 14 | public string Name; 15 | public Matrix Transformation; 16 | public float Density; 17 | public float Friction; 18 | public float Restitution; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Documentation/Images/3DCameraDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Documentation/Images/3DCameraDemo.png -------------------------------------------------------------------------------- /Documentation/Images/LightAndShadowsDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Documentation/Images/LightAndShadowsDemo.png -------------------------------------------------------------------------------- /Icons/NugetLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Icons/NugetLogo.png -------------------------------------------------------------------------------- /Package.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | icon.png 4 | https://nkast.github.io/Aether.Physics2D/ 5 | https://github.com/nkast/Aether.Physics2D 6 | Kastellanos Nikolaos 7 | Copyright © Kastellanos Nikolaos 2015-2024 8 | MS-PL 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Physics2D.Content/Content/BodyContainer.cs: -------------------------------------------------------------------------------- 1 | /* Original source Farseer Physics Engine: 2 | * Copyright (c) 2014 Ian Qvist, http://farseerphysics.codeplex.com 3 | * Microsoft Permissive License (Ms-PL) v1.1 4 | */ 5 | 6 | using System.Collections.Generic; 7 | using nkast.Aether.Physics2D.Collision.Shapes; 8 | using nkast.Aether.Physics2D.Dynamics; 9 | 10 | namespace nkast.Aether.Physics2D.Content 11 | { 12 | public class BodyContainer : Dictionary 13 | { 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Physics2D.Content/Content/FixtureTemplate.cs: -------------------------------------------------------------------------------- 1 | /* Original source Farseer Physics Engine: 2 | * Copyright (c) 2014 Ian Qvist, http://farseerphysics.codeplex.com 3 | * Microsoft Permissive License (Ms-PL) v1.1 4 | */ 5 | 6 | using System.Collections.Generic; 7 | using nkast.Aether.Physics2D.Collision.Shapes; 8 | using nkast.Aether.Physics2D.Dynamics; 9 | 10 | namespace nkast.Aether.Physics2D.Content 11 | { 12 | public class FixtureTemplate 13 | { 14 | public Shape Shape; 15 | public float Restitution; 16 | public float Friction; 17 | public string Name; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Physics2D.Content/ILLink.Descriptors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Physics2D.Content/Properties/AssemblyInfo.KNI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Physics2D.Content/Properties/AssemblyInfo.KNI.cs -------------------------------------------------------------------------------- /Physics2D.Content/Properties/AssemblyInfo.MG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Physics2D.Content/Properties/AssemblyInfo.MG.cs -------------------------------------------------------------------------------- /Physics2D.Diagnostics/Diagnostics/Content/DiagnosticsFont.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Physics2D.Diagnostics/Diagnostics/Content/DiagnosticsFont.xnb -------------------------------------------------------------------------------- /Physics2D.Diagnostics/Diagnostics/ILLink.Descriptors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Physics2D.Diagnostics/Diagnostics/Properties/AssemblyInfo.KNI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Physics2D.Diagnostics/Diagnostics/Properties/AssemblyInfo.KNI.cs -------------------------------------------------------------------------------- /Physics2D.Diagnostics/Diagnostics/Properties/AssemblyInfo.MG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Physics2D.Diagnostics/Diagnostics/Properties/AssemblyInfo.MG.cs -------------------------------------------------------------------------------- /Physics2D/Common/Constant.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 Kastellanos Nikolaos 2 | 3 | using System; 4 | 5 | namespace nkast.Aether.Physics2D.Common 6 | { 7 | static class Constant 8 | { 9 | public const float Pi = (float)Math.PI; 10 | public const float Tau = (float)(Math.PI * 2.0); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Physics2D/Common/PhysicsLogic/RealExplosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Physics2D/Common/PhysicsLogic/RealExplosion.cs -------------------------------------------------------------------------------- /Physics2D/ILLink.Descriptors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Physics2D/Properties/AssemblyInfo.KNI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Physics2D/Properties/AssemblyInfo.KNI.cs -------------------------------------------------------------------------------- /Physics2D/Properties/AssemblyInfo.MG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Physics2D/Properties/AssemblyInfo.MG.cs -------------------------------------------------------------------------------- /Samples/HelloWorld.BlazorGL/App.razor: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | Not found 8 | 9 |

Sorry, there's nothing at this address.

10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /Samples/HelloWorld.BlazorGL/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 |
4 |
5 | @Body 6 |
7 |
8 | -------------------------------------------------------------------------------- /Samples/HelloWorld.BlazorGL/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | @page "/index.html" 3 | @inject IJSRuntime JsRuntime 4 | @using nkast.Wasm.Canvas 5 | 6 | HelloWorld 7 | 8 |
19 | 20 |
21 | -------------------------------------------------------------------------------- /Samples/HelloWorld.BlazorGL/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using System.Net.Http 2 | @using System.Net.Http.Json 3 | @using Microsoft.AspNetCore.Components.Forms 4 | @using Microsoft.AspNetCore.Components.Routing 5 | @using Microsoft.AspNetCore.Components.Web 6 | @using Microsoft.AspNetCore.Components.Web.Virtualization 7 | @using Microsoft.AspNetCore.Components.WebAssembly.Http 8 | @using Microsoft.JSInterop 9 | @using nkast.Wasm.Canvas 10 | @using HelloWorld 11 | -------------------------------------------------------------------------------- /Samples/HelloWorld.BlazorGL/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld.BlazorGL/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Samples/HelloWorld.BlazorGL/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld.BlazorGL/wwwroot/favicon.png -------------------------------------------------------------------------------- /Samples/HelloWorld.BlazorGL/wwwroot/kni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld.BlazorGL/wwwroot/kni.png -------------------------------------------------------------------------------- /Samples/HelloWorld.BlazorGL/wwwroot/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld.BlazorGL/wwwroot/screenshot.png -------------------------------------------------------------------------------- /Samples/HelloWorld.WindowsDX/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Samples/HelloWorld.WindowsDX/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld.WindowsDX/Icon.ico -------------------------------------------------------------------------------- /Samples/HelloWorld.WindowsDX/Program.cs: -------------------------------------------------------------------------------- 1 | namespace nkast.Aether.Physics2D.Samples 2 | { 3 | static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | static void Main(string[] args) 9 | { 10 | using (Game1 game = new Game1()) 11 | { 12 | game.Run(); 13 | } 14 | } 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /Samples/HelloWorld/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld/Background.png -------------------------------------------------------------------------------- /Samples/HelloWorld/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld/Game.ico -------------------------------------------------------------------------------- /Samples/HelloWorld/GameThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld/GameThumbnail.png -------------------------------------------------------------------------------- /Samples/HelloWorld/PhoneGameThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorld/PhoneGameThumb.png -------------------------------------------------------------------------------- /Samples/HelloWorld/Program.cs: -------------------------------------------------------------------------------- 1 | namespace nkast.Aether.Physics2D.Samples 2 | { 3 | static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | static void Main(string[] args) 9 | { 10 | using (Game1 game = new Game1()) 11 | { 12 | game.Run(); 13 | } 14 | } 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /Samples/HelloWorld/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/HelloWorldContent/CircleSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorldContent/CircleSprite.png -------------------------------------------------------------------------------- /Samples/HelloWorldContent/GroundSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/HelloWorldContent/GroundSprite.png -------------------------------------------------------------------------------- /Samples/NewSamples.WindowsDX/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Samples/NewSamples.WindowsDX/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamples.WindowsDX/Icon.ico -------------------------------------------------------------------------------- /Samples/NewSamples.WindowsDX/Program.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017 Kastellanos Nikolaos 2 | 3 | namespace nkast.Aether.Physics2D.Samples 4 | { 5 | internal static class Program 6 | { 7 | /// 8 | /// The main entry point for the application. 9 | /// 10 | private static void Main(string[] args) 11 | { 12 | using (Game1 game = new Game1()) 13 | { 14 | game.Run(); 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Samples/NewSamples/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamples/Background.png -------------------------------------------------------------------------------- /Samples/NewSamples/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamples/Game.ico -------------------------------------------------------------------------------- /Samples/NewSamples/GameThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamples/GameThumbnail.png -------------------------------------------------------------------------------- /Samples/NewSamples/Program.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017 Kastellanos Nikolaos 2 | 3 | namespace nkast.Aether.Physics2D.Samples 4 | { 5 | internal static class Program 6 | { 7 | /// 8 | /// The main entry point for the application. 9 | /// 10 | private static void Main(string[] args) 11 | { 12 | using (Game1 game = new Game1()) 13 | { 14 | game.Run(); 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Samples/NewSamples/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/NewSamplesContent/Common/Buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/Common/Buttons.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/Common/Checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/Common/Checkmark.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/Common/Cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/Common/Cursor.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/Common/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/Common/Logo.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/Common/SamplesLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/Common/SamplesLogo.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Car.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Club.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Cookie.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Diamond.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Goo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Goo.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Heart.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Link.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Logo.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Spade.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/Wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/Wheel.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoGFX/cookie_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoGFX/cookie_orig.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/DemoSFX/Click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/DemoSFX/Click.wav -------------------------------------------------------------------------------- /Samples/NewSamplesContent/Materials/Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/Materials/Square.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/Materials/Stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/Materials/Stripe.png -------------------------------------------------------------------------------- /Samples/NewSamplesContent/Pipeline/Object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/NewSamplesContent/Pipeline/Object.png -------------------------------------------------------------------------------- /Samples/Samples.BlazorGL/App.razor: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | Not found 8 | 9 |

Sorry, there's nothing at this address.

10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /Samples/Samples.BlazorGL/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 |
4 |
5 | @Body 6 |
7 |
8 | -------------------------------------------------------------------------------- /Samples/Samples.BlazorGL/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | @page "/index.html" 3 | @inject IJSRuntime JsRuntime 4 | @using nkast.Wasm.Canvas 5 | 6 | Samples 7 | 8 |
19 | 20 |
21 | -------------------------------------------------------------------------------- /Samples/Samples.BlazorGL/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using System.Net.Http 2 | @using System.Net.Http.Json 3 | @using Microsoft.AspNetCore.Components.Forms 4 | @using Microsoft.AspNetCore.Components.Routing 5 | @using Microsoft.AspNetCore.Components.Web 6 | @using Microsoft.AspNetCore.Components.Web.Virtualization 7 | @using Microsoft.AspNetCore.Components.WebAssembly.Http 8 | @using Microsoft.JSInterop 9 | @using nkast.Wasm.Canvas 10 | @using Samples 11 | -------------------------------------------------------------------------------- /Samples/Samples.BlazorGL/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples.BlazorGL/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Samples/Samples.BlazorGL/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples.BlazorGL/wwwroot/favicon.png -------------------------------------------------------------------------------- /Samples/Samples.BlazorGL/wwwroot/kni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples.BlazorGL/wwwroot/kni.png -------------------------------------------------------------------------------- /Samples/Samples.BlazorGL/wwwroot/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples.BlazorGL/wwwroot/screenshot.png -------------------------------------------------------------------------------- /Samples/Samples.WindowsDX/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Samples/Samples.WindowsDX/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples.WindowsDX/Icon.ico -------------------------------------------------------------------------------- /Samples/Samples.WindowsDX/Program.cs: -------------------------------------------------------------------------------- 1 | namespace nkast.Aether.Physics2D.Samples 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | private static void Main(string[] args) 9 | { 10 | using (Game1 game = new Game1()) 11 | { 12 | game.Run(); 13 | } 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Samples/Samples/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples/Background.png -------------------------------------------------------------------------------- /Samples/Samples/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples/Game.ico -------------------------------------------------------------------------------- /Samples/Samples/GameThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples/GameThumbnail.png -------------------------------------------------------------------------------- /Samples/Samples/PhoneGameThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Samples/PhoneGameThumb.png -------------------------------------------------------------------------------- /Samples/Samples/Program.cs: -------------------------------------------------------------------------------- 1 | namespace nkast.Aether.Physics2D.Samples 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | private static void Main(string[] args) 9 | { 10 | using (Game1 game = new Game1()) 11 | { 12 | game.Run(); 13 | } 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Samples/Samples/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/Samples/ScreenSystem/IDemoScreen.cs: -------------------------------------------------------------------------------- 1 | /* Original source Farseer Physics Engine: 2 | * Copyright (c) 2014 Ian Qvist, http://farseerphysics.codeplex.com 3 | * Microsoft Permissive License (Ms-PL) v1.1 4 | */ 5 | 6 | namespace nkast.Aether.Physics2D.Samples.ScreenSystem 7 | { 8 | public interface IDemoScreen 9 | { 10 | string GetTitle(); 11 | string GetDetails(); 12 | } 13 | } -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/arrow.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/buttons.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/cursor.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/gradient.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/logo.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/popup.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/slider.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/socket.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Common/stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Common/stick.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Fonts/detailsFont.spritefont: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Courier New 5 | 10 6 | 1 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | ~ 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Samples/SamplesContent/Fonts/menufont.spritefont: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Segoe UI Mono 5 | 23 6 | 2 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | ~ 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Samples/SamplesContent/Materials/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Materials/blank.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Materials/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Materials/dots.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Materials/pavement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Materials/pavement.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Materials/squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Materials/squares.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Materials/waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Materials/waves.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Samples/alphabet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Samples/alphabet.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Samples/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Samples/car.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Samples/goo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Samples/goo.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Samples/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Samples/link.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Samples/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Samples/object.png -------------------------------------------------------------------------------- /Samples/SamplesContent/Samples/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/SamplesContent/Samples/wheel.png -------------------------------------------------------------------------------- /Samples/Testbed.WindowsDX/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Samples/Testbed.WindowsDX/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Testbed.WindowsDX/Game.ico -------------------------------------------------------------------------------- /Samples/Testbed.WindowsDX/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Testbed.WindowsDX/Icon.ico -------------------------------------------------------------------------------- /Samples/Testbed/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Testbed/Background.png -------------------------------------------------------------------------------- /Samples/Testbed/Data/diamond.dat: -------------------------------------------------------------------------------- 1 | -0.1 -4.5 2 | 2.9 -3 3 | 5.9 -1.5 4 | 8.9 0 5 | 11.9 1.5 6 | 1.4 3 7 | -12.1 1.5 8 | -9.1 0 9 | -6.1 -1.5 10 | -3.1 -3 11 | -------------------------------------------------------------------------------- /Samples/Testbed/Data/star.dat: -------------------------------------------------------------------------------- 1 | -7.629395E-06 -12.53631 2 | 2.899994 -3.93631 3 | 11.89999 -3.93631 4 | 4.699993 1.46369 5 | 7.299992 10.06369 6 | -7.629395E-06 4.96369 7 | -7.300007 10.06369 8 | -4.700006 1.46369 9 | -11.90001 -3.93631 10 | -2.900005 -3.93631 11 | -------------------------------------------------------------------------------- /Samples/Testbed/Data/strange.dat: -------------------------------------------------------------------------------- 1 | 1.374089 8.641284 2 | 5.374088 5.441284 3 | 6.174088 0.6412848 4 | 3.774089 -0.9587151 5 | 8.574088 -1.758715 6 | 4.574088 -4.158716 7 | -0.2259109 -3.358715 8 | -0.2259109 -8.158716 9 | -2.625911 -5.758716 10 | -6.625912 -8.958716 11 | -9.825912 -6.558716 12 | -6.625912 -7.358716 13 | -1.025911 0.6412848 14 | -6.305912 -1.758715 15 | -7.425912 3.841285 16 | -2.625911 2.241285 17 | -------------------------------------------------------------------------------- /Samples/Testbed/Framework/GameSettings.cs: -------------------------------------------------------------------------------- 1 | /* Original source Farseer Physics Engine: 2 | * Copyright (c) 2014 Ian Qvist, http://farseerphysics.codeplex.com 3 | * Microsoft Permissive License (Ms-PL) v1.1 4 | */ 5 | 6 | namespace nkast.Aether.Physics2D.Samples.Testbed.Framework 7 | { 8 | public class GameSettings 9 | { 10 | public float Hz; 11 | public bool Pause; 12 | public bool SingleStep; 13 | 14 | public GameSettings() 15 | { 16 | #if WINDOWS_PHONE 17 | Hz = 30.0f; 18 | #else 19 | Hz = 60.0f; 20 | #endif 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Samples/Testbed/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Testbed/Game.ico -------------------------------------------------------------------------------- /Samples/Testbed/GameThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/Testbed/GameThumbnail.png -------------------------------------------------------------------------------- /Samples/Testbed/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/TestbedContent/Pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/TestbedContent/Pixel.png -------------------------------------------------------------------------------- /Samples/TestbedContent/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/TestbedContent/Rock.png -------------------------------------------------------------------------------- /Samples/TestbedContent/Terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/TestbedContent/Terrain.png -------------------------------------------------------------------------------- /Samples/TestbedContent/Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/Samples/TestbedContent/Texture.png -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/.nojekyll -------------------------------------------------------------------------------- /docs/Documentation/2.0/NugetLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/NugetLogo.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/bc_s.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/bdwn.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0879877782bb1d1a2b0cfdf2478b818a -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_dynamic_tree_broad_phase__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 0879877782bb1d1a2b0cfdf2478b818a -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 925e33bae17014451ef79a39e6532287 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_chain_shape__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 7cef7cec6f0d84c3ee401844b493597e -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__coll__graph.md5: -------------------------------------------------------------------------------- 1 | fbe9d1f064c2de2e2742529285878b51 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_circle_shape__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 2a0f94ff326abffb9114d4785037448b -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f76fb612827c3c814e103c7d3fb293a9 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_edge_shape__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | d81d3eaeddffe2130c7eb2b276f905c5 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bfcea92deb377e2e98052bede1b6d53d -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_polygon_shape__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 767e647878c1069d08afb04acdddb814 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c96df85115c93bcc8b4dccbbad6ac05c -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_shape__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 28f96680556dd6005be5f357a86f80e2 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_input__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f3b0514ad32709e10baca96a3a91fb0c -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe7351699e28294e84d5ae07f21e9b2f9a.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_swe7351699e28294e84d5ae07f21e9b2f9a.md5: -------------------------------------------------------------------------------- 1 | 093b8680e1a24078ed358ee7aae8d802 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_sweedbf4abf82be9fa9cbcc94dced18d340.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_sweedbf4abf82be9fa9cbcc94dced18d340.md5: -------------------------------------------------------------------------------- 1 | 9ff6dfdf0330908c37dfa6b23db7c629 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_filter_data__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c280c08d7b01f4bdd0dbfa87c29e8d35 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c7ba9b21b53a82ac0f61b347ab9e19e6 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_physics_logic__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | cbbb21d1d074d394b82b700290417cf4 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1e4334e064cc6807c667de73b03c4933 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_real_explosion__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 1e4334e064cc6807c667de73b03c4933 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 45d11dd11a4f7bfa976e9ea5853b8e6c -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_physics_logic_1_1_simple_explosion__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 45d11dd11a4f7bfa976e9ea5853b8e6c -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_texture_tools_1_1_terrain__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1cc8400e048e5058cb085aaf7ba4ff39 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 8e44202c3321d955d6db42dcb19cd457 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vertices__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 8e44202c3321d955d6db42dcb19cd457 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bcf77f2e4cf0eaa615b3c14c865943e5 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_abstract_force_controller__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 1a1c35eae09bc79e06521b4880400ce6 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 39002f22b28deb4252fce8d021573882 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_buoyancy_controller__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 825f837d0f9e85cb3bcb3ccee193fe72 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3678a683d53597c5ca1f4c589d3b30c0 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_controller__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4ccfe0c66d2e1a7f93cab427b38f4206 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 8fb1f0087f84a651e1bd2fbd97af7692 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_gravity_controller__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 8fb1f0087f84a651e1bd2fbd97af7692 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 57946588b17e7bb7cf5fe71aacb2c900 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_simple_wind_force__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 57946588b17e7bb7cf5fe71aacb2c900 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b31a64da562a651f8dfe2684a4c9c00b -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_controllers_1_1_velocity_limit_controller__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b31a64da562a651f8dfe2684a4c9c00b -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3d6247da663707419026a67f311a3007 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3403475f594ac9950632ea8f20047990 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3403475f594ac9950632ea8f20047990 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contact_manager__coll__graph.md5: -------------------------------------------------------------------------------- 1 | d325015c5dc4471958c6fb8349d0cb1d -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 38346425ebefab2e8a9deda45ea59fab -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e7eee61d2e2f494dabd493204a5f7318 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a74f324a16fe4288bb1a6d70d42e029f -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_list_head__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a7b860fb4e6fb1ccaca491449e02ec3e -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_position_constraint__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_position_constraint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 10ff3b312c5ce22d8435cab4c6067469 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_solver__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 18c8803f1d845d2fe28d112d8dbeeac2 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_contact_velocity_constraint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5e113377c7601409eb6b69003d7a2db8 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_velocity_constraint_point__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_contacts_1_1_velocity_constraint_point__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 334a4d638d379c197429e446e46a331c -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 93a20ed1bb553cb66a341b3a3ef99622 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 93a20ed1bb553cb66a341b3a3ef99622 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b0dfda6aa66b712f9268589ae0a69423 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b0dfda6aa66b712f9268589ae0a69423 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_island__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a5920baf10ad81328e9a2e37049a1ecf -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__coll__graph.md5: -------------------------------------------------------------------------------- 1 | cb083d7604134b49c205f4b6c5674a74 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | cb083d7604134b49c205f4b6c5674a74 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 8e80200dd420eb2a68245a4639fece14 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_angle_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 0603a64b180da536dbd5b9e599e550f1 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c3a2013c7df5da2159829589438a1730 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_distance_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 6160c287dc62cd967f963e1305daf60c -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | cdfa0ce88847a231f17a5fa57900fee1 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_fixed_mouse_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c9de12d23b1ee54d6614debd92d9665a -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 991641cc58c664c7051bf248c119452c -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_friction_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4af686aa0bdf49071182ab9e9cdfec84 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 27559423b3493db7bae1c10576f58c10 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_gear_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 656874624cb681654123b2189cd712e1 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | fc9c987afd9bef06d106dc7e30c9998a -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4ef344dce0c66d047e38b2eec520b9b7 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_joint_edge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | de4652342e1dfc82f554edaae9601b73 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 7f3e05653098a198bb8360d165febafd -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_motor_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | beed2748a7c0f496c4e905adad961fb8 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3088a1b518e255c92f1470e2aa6db77a -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_prismatic_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 8869e2783cedd5be8c71b99e3237e8c3 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | e3e25c5bffc6e3459b58dc3781871e1e -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_pulley_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b68f424baf65010112ec7c3a61bdbb45 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2950530a9ce6ff817a191a1914aa8baa -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_revolute_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 9c1b3d0e0c908a2f0c200b54156582c5 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c2f5042cc5e7f1d57a57fb24ac4bac36 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_rope_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3ee74e3b75686cf036c59122d2b2b034 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f0798380a0de0c7fc3101631fd4e32b9 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_weld_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | d099bdf89c327d0dd1f7cc02acc8147e -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3a1bf55764588386f21d028cfcdf29c5 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joints_1_1_wheel_joint__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 362859a8030646c260434db874a96e18 -------------------------------------------------------------------------------- /docs/Documentation/2.0/classnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_world__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c1d2b81f4022bc777d97f01f883e5064 -------------------------------------------------------------------------------- /docs/Documentation/2.0/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/closed.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/doc.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/folderclosed.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/folderopen.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_0.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_0.md5: -------------------------------------------------------------------------------- 1 | 3332c229b605b967f1bdbf6012c39bb0 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_1.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_1.md5: -------------------------------------------------------------------------------- 1 | 8b34a1f9d37321479fcf08ac2c7abd6b -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_10.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_10.md5: -------------------------------------------------------------------------------- 1 | 8cb76a74f56280e31036af45c66a3e07 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_11.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_11.md5: -------------------------------------------------------------------------------- 1 | 0b2b31ada71a708f1cf58130142704a7 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_12.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_12.md5: -------------------------------------------------------------------------------- 1 | 024f72c1edc84e9c5cdd7d38c109dce8 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_13.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_13.md5: -------------------------------------------------------------------------------- 1 | a268756e1b87b60f447ad35b7a19f461 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_14.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_14.md5: -------------------------------------------------------------------------------- 1 | 8184a5b9dbde689a3af22f0fda067819 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_15.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_15.md5: -------------------------------------------------------------------------------- 1 | 87fa76acb61009535bac6252f5ee9f83 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_16.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_16.md5: -------------------------------------------------------------------------------- 1 | 8371b61e232f1155aa5c07de71faa58b -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_17.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_17.md5: -------------------------------------------------------------------------------- 1 | 900bb4b92de4495e078174aa856b7a5e -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_18.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_18.md5: -------------------------------------------------------------------------------- 1 | 921d86e4fe9679eb2a9d7d01ae1b5d4d -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_19.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_19.md5: -------------------------------------------------------------------------------- 1 | 52a6e3a1e2f8698cc6692684adad6b65 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_2.md5: -------------------------------------------------------------------------------- 1 | 7a5feb065052503604abf8278900f725 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_20.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_20.md5: -------------------------------------------------------------------------------- 1 | 11e654694fdbf827631e0d4439ef58ab -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_21.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_21.md5: -------------------------------------------------------------------------------- 1 | e572f0bc5c1cdadc953ebdcc6eb73418 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_22.md5: -------------------------------------------------------------------------------- 1 | cd4d6628726447685fe8073ac3714218 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_23.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_23.md5: -------------------------------------------------------------------------------- 1 | f8c5323d6f449157c9142f5b1c3ccb52 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_24.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_24.md5: -------------------------------------------------------------------------------- 1 | 3e3cb809668b8ea7cbf194873f6a11b6 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_25.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_25.md5: -------------------------------------------------------------------------------- 1 | 9d6dd0055b75d733f43002811cc7a7c6 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_26.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_26.md5: -------------------------------------------------------------------------------- 1 | d6d45b900bfdd4badfa7dadfa34ed138 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_27.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_27.md5: -------------------------------------------------------------------------------- 1 | b0f38a888b4bf764abce171cc05aacba -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_28.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_28.md5: -------------------------------------------------------------------------------- 1 | 8f167bf77aabcba066b33a0c943450bc -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_29.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_29.md5: -------------------------------------------------------------------------------- 1 | 4beb3033fb6869fa6e8e6de0cb7fb706 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_3.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_3.md5: -------------------------------------------------------------------------------- 1 | 0c4f3600e11803119bf7f15f1835cd80 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_30.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_30.md5: -------------------------------------------------------------------------------- 1 | 8ad402da1f61a9b04f29bac10f4b676f -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_31.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_31.md5: -------------------------------------------------------------------------------- 1 | f1d668ee64e266d3be9c2efe2abe82c7 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_32.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_32.md5: -------------------------------------------------------------------------------- 1 | 5922c67d61f0d63a8abc3ce3f220b6c6 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_33.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_33.md5: -------------------------------------------------------------------------------- 1 | f67751be76066121da93d4f6d2d4e658 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_34.md5: -------------------------------------------------------------------------------- 1 | a0200b99ee35d6211ad939524d5ccc4c -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_35.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_35.md5: -------------------------------------------------------------------------------- 1 | d2dad2c19efc118b27ab188ed5732345 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_36.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_36.md5: -------------------------------------------------------------------------------- 1 | 2ebb5a7fa31a0ea0aede8126355a9857 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_37.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_37.md5: -------------------------------------------------------------------------------- 1 | 047d570ff5102179625021021ea77599 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_38.md5: -------------------------------------------------------------------------------- 1 | 5c08fd4473850a2c1103495a288a1123 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_39.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_39.md5: -------------------------------------------------------------------------------- 1 | 8353e65f9c832d89447816ec9e89b19e -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_4.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_4.md5: -------------------------------------------------------------------------------- 1 | dd11954e4488fc04b96e5aa743872234 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_40.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_40.md5: -------------------------------------------------------------------------------- 1 | 2b68158a146b9762cf36d83ae408c3d1 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_41.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_41.md5: -------------------------------------------------------------------------------- 1 | 9a3b6bc25ff8f952230f0bbbe88414d4 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_42.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_42.md5: -------------------------------------------------------------------------------- 1 | 2f1ed5b089fa571a08c68ac7c85e76a9 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_43.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_43.md5: -------------------------------------------------------------------------------- 1 | 32a2ba16bd47ab4af92487eecd2060ff -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_44.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_44.md5: -------------------------------------------------------------------------------- 1 | 30d14d8c39722238d47750114d8c11f3 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_45.md5: -------------------------------------------------------------------------------- 1 | 4f0d7a7180f32069b1db4a45795815f8 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_46.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_46.md5: -------------------------------------------------------------------------------- 1 | 4d6b28aa327a254f0b068ba05db8fdd3 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_47.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_47.md5: -------------------------------------------------------------------------------- 1 | 6be5c6f9e6bfb3e353d1a1207096f362 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_48.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_48.md5: -------------------------------------------------------------------------------- 1 | fad7b36af1bf290043dc7acbb5a2179a -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_49.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_49.md5: -------------------------------------------------------------------------------- 1 | e8a0fbe0afa40d18358365088af81ac8 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_5.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_5.md5: -------------------------------------------------------------------------------- 1 | 9ab41b2e95579a0ee5117a8f5efa59fd -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_50.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_50.md5: -------------------------------------------------------------------------------- 1 | fe862402a56fde724ce460944efa1e41 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_51.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_51.md5: -------------------------------------------------------------------------------- 1 | 5b95055799ce99e8d885944ca910f65e -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_52.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_52.md5: -------------------------------------------------------------------------------- 1 | 2a3db3876c9a24ac3bd84c1021831d93 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_53.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_53.md5: -------------------------------------------------------------------------------- 1 | d7fd86bee7291840948b5a113b20b69c -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_54.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_54.md5: -------------------------------------------------------------------------------- 1 | 74c6fe99b2be45027e8a11e540b30007 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_55.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_55.md5: -------------------------------------------------------------------------------- 1 | fdd4b1b9e8968bb703d5ebff366fe0a8 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_56.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_56.md5: -------------------------------------------------------------------------------- 1 | d6bcb06882f125f75acb7652c3d6a82e -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_6.md5: -------------------------------------------------------------------------------- 1 | bb40ab4520f39a07998b8c0ed32d6073 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_7.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_7.md5: -------------------------------------------------------------------------------- 1 | bad5f383f2e6b1cc1e3ee0fb3ba5d787 -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_8.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_8.md5: -------------------------------------------------------------------------------- 1 | cb2678e2d25ac545ec0d1a66d3f25b6d -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_9.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/inherit_graph_9.md5: -------------------------------------------------------------------------------- 1 | 367c9dd1dfa3bfc04a41a35dd6042f8f -------------------------------------------------------------------------------- /docs/Documentation/2.0/interfacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_i_broad_phase__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/interfacenkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_i_broad_phase__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a5c02382d1358d5280b28dd53ce8b552 -------------------------------------------------------------------------------- /docs/Documentation/2.0/namespacenkast.js: -------------------------------------------------------------------------------- 1 | var namespacenkast = 2 | [ 3 | [ "Aether", "namespacenkast_1_1_aether.html", "namespacenkast_1_1_aether" ] 4 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/namespacenkast_1_1_aether.js: -------------------------------------------------------------------------------- 1 | var namespacenkast_1_1_aether = 2 | [ 3 | [ "Physics2D", "namespacenkast_1_1_aether_1_1_physics2_d.html", "namespacenkast_1_1_aether_1_1_physics2_d" ] 4 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay.js: -------------------------------------------------------------------------------- 1 | var namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay = 2 | [ 3 | [ "Sweep", "namespacenkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_decomposition_1_1_c_d_t_1_1_delaunay_1_1_sweep.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/namespaces_dup.js: -------------------------------------------------------------------------------- 1 | var namespaces_dup = 2 | [ 3 | [ "nkast", "namespacenkast.html", "namespacenkast" ] 4 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/nav_f.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/nav_g.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/nav_h.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/open.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/splitbar.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_a_a_b_b__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_a_a_b_b__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2a803350cb2cacbc87af33fe3ddf4d4f -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex = 2 | [ 3 | [ "ID", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex.html#a11c7f907b388d00832e09d89f936dc2a", null ], 4 | [ "V", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex.html#a4252617c9a790d7ead4fc62ad17e3c73", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_clip_vertex__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bc9ce26fafafceed5b926da36c3c2a5c -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d = 2 | [ 3 | [ "Features", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d.html#a07f84c7b28b8fe5fcb54bd73bb394164", null ], 4 | [ "Key", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d.html#a5980c1f8dd43c6df57e3701340994c5a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_contact_i_d__coll__graph.md5: -------------------------------------------------------------------------------- 1 | cbc673cb5df8238b9dcde41f4ebb0999 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_input__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 8bab98bee00ffb3946f3ac2fb5842e52 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_output__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_output__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0493d38ba1df32a0fb465ff2a2306dca -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy = 2 | [ 3 | [ "DistanceProxy", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy.html#aaa7b42a87967c983fce519d189356e17", null ], 4 | [ "GetSupport", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy.html#abf8f0e367cb773cf18cd63e66eeb80a7", null ], 5 | [ "GetSupportVertex", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy.html#a867fe6dec84c9eec88e7e9d00fa8e0ff", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_distance_proxy__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5f4f7e897833e986117d0aafb075b536 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_e_p_axis.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_e_p_axis = 2 | [ 3 | [ "Index", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_e_p_axis.html#a075e1e3c9dd399cef584d7338cc37938", null ], 4 | [ "Separation", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_e_p_axis.html#ab2223b5b51de102521265750b8ce87c4", null ], 5 | [ "Type", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_e_p_axis.html#ae5405a7eac51ce0b5e3803d9b4dafd04", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 045a3430c6ae3ad990069730c7586382 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_manifold_point__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5e7104bde9134ba5b67e14fdf2d72237 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input = 2 | [ 3 | [ "MaxFraction", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input.html#af8a6491e2b6e8dd62a06c44089468f88", null ], 4 | [ "Point1", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input.html#aac7add01618434a53ed26216958fcdee", null ], 5 | [ "Point2", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input.html#a46ba4a429ac49e5272bcd7aa13da85c7", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_input__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ace403d328f28a46c1be26cee838118d -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output = 2 | [ 3 | [ "Fraction", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output.html#ae2ee62d7437b30ba49c67e1a18305508", null ], 4 | [ "Normal", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output.html#a880585dece40597b196d72d65b952800", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_ray_cast_output__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bf01c1c6a942a0c4f349e04f7a93ada1 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_reference_face__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_reference_face__coll__graph.md5: -------------------------------------------------------------------------------- 1 | fd2f10d4f26a62dea3df756f4b61220b -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__coll__graph.md5: -------------------------------------------------------------------------------- 1 | d629d4aeebdfabdcd546421d57c2fdc6 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_shapes_1_1_mass_data__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | d629d4aeebdfabdcd546421d57c2fdc6 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_simplex_cache__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_simplex_cache__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 9723131705e27b8bdcbe4be320de6609 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_output.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_output = 2 | [ 3 | [ "State", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_output.html#af65a7c20ce8e1d346c8b675dc5d19d9a", null ], 4 | [ "T", "structnkast_1_1_aether_1_1_physics2_d_1_1_collision_1_1_t_o_i_output.html#a1e59dd36aafb310776e617456b9415b5", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array2.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array2 = 2 | [ 3 | [ "this[int index]", "structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array2.html#a4da03330824868fcb5ca5aad6031b3e3", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array3.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array3 = 2 | [ 3 | [ "this[int index]", "structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array3.html#a4da03330824868fcb5ca5aad6031b3e3", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array4.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array4 = 2 | [ 3 | [ "this[int index]", "structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array4.html#a4da03330824868fcb5ca5aad6031b3e3", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array8.js: -------------------------------------------------------------------------------- 1 | var structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array8 = 2 | [ 3 | [ "this[int index]", "structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_fixed_array8.html#a4da03330824868fcb5ca5aad6031b3e3", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat22__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat22__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 15dca175a6a721ea8698432bca869dfd -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat33__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_mat33__coll__graph.md5: -------------------------------------------------------------------------------- 1 | e80ddc5e6891e2425d131298986ee00d -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_sweep__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_sweep__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 9bf7dc2bfc3ca689cb2843b556c3fec3 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_transform__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 4dcbf810991b82e2b34257f4cf90535a -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 47c7e63d505139b9aacc45bf5a2bc037 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector2__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 47c7e63d505139b9aacc45bf5a2bc037 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 410ef60137240a49dae5b497ee770d4a -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_common_1_1_vector3__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 410ef60137240a49dae5b497ee770d4a -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 175e77fb05563bd85a5c33b7a4e8905b -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_body_collection_1_1_body_enumerator__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 175e77fb05563bd85a5c33b7a4e8905b -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 54164f2ce8c2e405a05ec821431d1842 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_controller_collection_1_1_controller_enumerator__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 54164f2ce8c2e405a05ec821431d1842 -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ee26185abf8bf4767035dd90db4f74dc -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_collection_1_1_fixture_enumerator__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ee26185abf8bf4767035dd90db4f74dc -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_fixture_proxy__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a4780be9f45b72c824ab787b43ca7b6b -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__coll__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__coll__graph.md5: -------------------------------------------------------------------------------- 1 | e13ab769c8b260137f0866e17695917a -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/Documentation/2.0/structnkast_1_1_aether_1_1_physics2_d_1_1_dynamics_1_1_joint_collection_1_1_joint_enumerator__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e13ab769c8b260137f0866e17695917a -------------------------------------------------------------------------------- /docs/Documentation/2.0/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/sync_off.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/sync_on.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/tab_a.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/tab_b.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/tab_h.png -------------------------------------------------------------------------------- /docs/Documentation/2.0/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/Documentation/2.0/tab_s.png -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/favicon.png -------------------------------------------------------------------------------- /docs/images/3DCameraDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/images/3DCameraDemo.png -------------------------------------------------------------------------------- /docs/images/LightAndShadowsDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/images/LightAndShadowsDemo.png -------------------------------------------------------------------------------- /docs/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/images/Logo.png -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/Content/CircleSprite.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/Content/CircleSprite.xnb -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/Content/Font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/Content/Font.xnb -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/Content/GroundSprite.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/Content/GroundSprite.xnb -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Aether.Physics2D.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Aether.Physics2D.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/HelloWorld.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/HelloWorld.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.AspNetCore.Components.Web.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.AspNetCore.Components.Web.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.AspNetCore.Components.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.AspNetCore.Components.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Configuration.Json.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Configuration.Json.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Configuration.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Configuration.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.DependencyInjection.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.DependencyInjection.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Logging.Abstractions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Logging.Abstractions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Logging.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Logging.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Options.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Options.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Primitives.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.Extensions.Primitives.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.JSInterop.WebAssembly.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.JSInterop.WebAssembly.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Microsoft.JSInterop.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Microsoft.JSInterop.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/MonoGame.Framework.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/MonoGame.Framework.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Collections.Concurrent.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Collections.Concurrent.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Collections.NonGeneric.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Collections.NonGeneric.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Collections.Specialized.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Collections.Specialized.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Collections.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Collections.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.ComponentModel.Primitives.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.ComponentModel.Primitives.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.ComponentModel.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.ComponentModel.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Console.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Console.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Diagnostics.DiagnosticSource.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Diagnostics.DiagnosticSource.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Diagnostics.TraceSource.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Diagnostics.TraceSource.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Linq.Expressions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Linq.Expressions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Linq.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Linq.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Memory.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Memory.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Net.Http.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Net.Http.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Net.Primitives.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Net.Primitives.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.ObjectModel.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.ObjectModel.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Private.CoreLib.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Private.CoreLib.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Private.Uri.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Private.Uri.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Private.Xml.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Private.Xml.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Runtime.InteropServices.JavaScript.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Runtime.InteropServices.JavaScript.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Runtime.Serialization.Primitives.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Runtime.Serialization.Primitives.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Runtime.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Runtime.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Security.Cryptography.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Security.Cryptography.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Text.Encodings.Web.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Text.Encodings.Web.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Text.Json.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Text.Json.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Text.RegularExpressions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Text.RegularExpressions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Threading.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Threading.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Xml.ReaderWriter.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Xml.ReaderWriter.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/System.Xml.XmlSerializer.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/System.Xml.XmlSerializer.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Xna.Framework.Audio.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Xna.Framework.Audio.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Xna.Framework.Content.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Xna.Framework.Content.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Xna.Framework.Game.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Xna.Framework.Game.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Xna.Framework.Graphics.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Xna.Framework.Graphics.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Xna.Framework.Input.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Xna.Framework.Input.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Xna.Framework.Media.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Xna.Framework.Media.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/Xna.Framework.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/Xna.Framework.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/blazor.boot.json.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/blazor.boot.json.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/dotnet.native.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/dotnet.native.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/icudt_CJK.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/icudt_CJK.dat.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/icudt_EFIGS.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/icudt_EFIGS.dat.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/icudt_no_CJK.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/icudt_no_CJK.dat.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/nkast.Wasm.Audio.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/nkast.Wasm.Audio.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/nkast.Wasm.Canvas.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/nkast.Wasm.Canvas.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/nkast.Wasm.Dom.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/nkast.Wasm.Dom.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/_framework/nkast.Wasm.XHR.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/_framework/nkast.Wasm.XHR.wasm.br -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/favicon.png -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/kni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/kni.png -------------------------------------------------------------------------------- /docs/wasm/HelloWorld/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/HelloWorld/screenshot.png -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/arrow.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/arrow.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/buttons.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/buttons.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/cursor.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/cursor.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/gradient.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/gradient.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/logo.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/logo.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/popup.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/popup.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/slider.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/slider.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/socket.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/socket.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Common/stick.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Common/stick.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/DiagnosticsFont.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/DiagnosticsFont.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Effects/LightEffect.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Effects/LightEffect.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Fonts/detailsFont.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Fonts/detailsFont.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Fonts/frameRateCounterFont.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Fonts/frameRateCounterFont.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Fonts/menuFont.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Fonts/menuFont.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Materials/blank.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Materials/blank.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Materials/dots.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Materials/dots.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Materials/pavement.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Materials/pavement.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Materials/squares.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Materials/squares.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Materials/waves.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Materials/waves.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Samples/alphabet.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Samples/alphabet.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Samples/car.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Samples/car.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Samples/goo.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Samples/goo.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Samples/link.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Samples/link.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Samples/object.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Samples/object.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/Content/Samples/wheel.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/Content/Samples/wheel.xnb -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Aether.Physics2D.Diagnostics.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Aether.Physics2D.Diagnostics.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Aether.Physics2D.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Aether.Physics2D.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.AspNetCore.Components.Web.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.AspNetCore.Components.Web.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.AspNetCore.Components.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.AspNetCore.Components.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.Configuration.Json.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.Configuration.Json.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.Configuration.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.Configuration.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.DependencyInjection.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.DependencyInjection.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.Logging.Abstractions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.Logging.Abstractions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.Logging.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.Logging.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.Options.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.Options.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.Extensions.Primitives.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.Extensions.Primitives.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.JSInterop.WebAssembly.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.JSInterop.WebAssembly.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Microsoft.JSInterop.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Microsoft.JSInterop.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/MonoGame.Framework.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/MonoGame.Framework.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Samples.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Samples.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Collections.Concurrent.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Collections.Concurrent.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Collections.NonGeneric.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Collections.NonGeneric.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Collections.Specialized.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Collections.Specialized.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Collections.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Collections.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.ComponentModel.Primitives.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.ComponentModel.Primitives.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.ComponentModel.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.ComponentModel.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Console.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Console.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Diagnostics.DiagnosticSource.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Diagnostics.DiagnosticSource.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Diagnostics.TraceSource.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Diagnostics.TraceSource.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Linq.Expressions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Linq.Expressions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Linq.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Linq.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Memory.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Memory.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Net.Http.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Net.Http.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Net.Primitives.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Net.Primitives.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.ObjectModel.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.ObjectModel.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Private.CoreLib.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Private.CoreLib.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Private.Uri.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Private.Uri.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Private.Xml.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Private.Xml.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Runtime.InteropServices.JavaScript.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Runtime.InteropServices.JavaScript.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Runtime.Serialization.Primitives.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Runtime.Serialization.Primitives.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Runtime.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Runtime.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Security.Cryptography.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Security.Cryptography.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Text.Encodings.Web.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Text.Encodings.Web.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Text.Json.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Text.Json.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Text.RegularExpressions.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Text.RegularExpressions.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Threading.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Threading.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Xml.ReaderWriter.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Xml.ReaderWriter.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/System.Xml.XmlSerializer.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/System.Xml.XmlSerializer.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Xna.Framework.Audio.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Xna.Framework.Audio.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Xna.Framework.Content.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Xna.Framework.Content.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Xna.Framework.Game.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Xna.Framework.Game.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Xna.Framework.Graphics.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Xna.Framework.Graphics.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Xna.Framework.Input.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Xna.Framework.Input.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Xna.Framework.Media.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Xna.Framework.Media.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/Xna.Framework.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/Xna.Framework.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/blazor.boot.json.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/blazor.boot.json.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/dotnet.native.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/dotnet.native.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/icudt_CJK.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/icudt_CJK.dat.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/icudt_EFIGS.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/icudt_EFIGS.dat.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/icudt_no_CJK.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/icudt_no_CJK.dat.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/nkast.Wasm.Audio.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/nkast.Wasm.Audio.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/nkast.Wasm.Canvas.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/nkast.Wasm.Canvas.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/nkast.Wasm.Dom.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/nkast.Wasm.Dom.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/_framework/nkast.Wasm.XHR.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/_framework/nkast.Wasm.XHR.wasm.br -------------------------------------------------------------------------------- /docs/wasm/Samples/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/favicon.ico -------------------------------------------------------------------------------- /docs/wasm/Samples/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/favicon.png -------------------------------------------------------------------------------- /docs/wasm/Samples/kni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/kni.png -------------------------------------------------------------------------------- /docs/wasm/Samples/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkast/Aether.Physics2D/7dbc635d28bfd38ebdd585d25319f27367bd5525/docs/wasm/Samples/screenshot.png -------------------------------------------------------------------------------- /pack.bat: -------------------------------------------------------------------------------- 1 | dotnet pack Aether.Physics2D.sln /p:Configuration=Release -o bin\publish 2 | dotnet pack Aether.Physics2D.KNI.sln /p:Configuration=Release -o bin\publish 3 | dotnet pack Aether.Physics2D.MG.sln /p:Configuration=Release -o bin\publish 4 | 5 | @pause 6 | --------------------------------------------------------------------------------