├── .gitignore ├── DestMath ├── Dest.Math │ ├── AAB2.cs │ ├── AAB3.cs │ ├── Approximation.cs │ ├── Box2.cs │ ├── Box3.cs │ ├── BrentsRoot.cs │ ├── Capsule3.cs │ ├── Circle2.cs │ ├── Circle2Circle2Intr.cs │ ├── Circle3.cs │ ├── ConcaveHull.cs │ ├── ConcaveHull2.cs │ ├── ConvexHull.cs │ ├── ConvexHull1.cs │ ├── ConvexHull2.cs │ ├── ConvexHull3.cs │ ├── CubicRoots.cs │ ├── DefaultLogger.cs │ ├── Distance.cs │ ├── Edge2.cs │ ├── Edge3.cs │ ├── EigenData.cs │ ├── EigenDecomposition.cs │ ├── EmptyLogger.cs │ ├── Float6.cs │ ├── ILogger.cs │ ├── Integrator.cs │ ├── Intersection.cs │ ├── IntersectionTypes.cs │ ├── Line2.cs │ ├── Line2AAB2Intr.cs │ ├── Line2Box2Intr.cs │ ├── Line2Circle2Intr.cs │ ├── Line2ConvexPolygon2Intr.cs │ ├── Line2Line2Intr.cs │ ├── Line2Ray2Intr.cs │ ├── Line2Segment2Intr.cs │ ├── Line2Triangle2Intr.cs │ ├── Line3.cs │ ├── Line3AAB3Intr.cs │ ├── Line3Box3Dist.cs │ ├── Line3Box3Intr.cs │ ├── Line3Circle3Intr.cs │ ├── Line3Plane3Intr.cs │ ├── Line3Polygon3Intr.cs │ ├── Line3Rectangle3Intr.cs │ ├── Line3Sphere3Intr.cs │ ├── Line3Triangle3Intr.cs │ ├── LinearSystem.cs │ ├── Logger.cs │ ├── Mathfex.cs │ ├── Matrix4x4ex.cs │ ├── OdeEuler.cs │ ├── OdeFunction.cs │ ├── OdeMidpoint.cs │ ├── OdeRungeKutta4.cs │ ├── OdeSolver.cs │ ├── Orientations.cs │ ├── Plane3.cs │ ├── Plane3Plane3Intr.cs │ ├── Plane3Sphere3Intr.cs │ ├── Plane3Triangle3Intr.cs │ ├── Polygon2.cs │ ├── Polygon3.cs │ ├── Polynomial.cs │ ├── ProjectionPlanes.cs │ ├── QuadraticRoots.cs │ ├── QuarticRoots.cs │ ├── Quaternionex.cs │ ├── Query.cs │ ├── Query2.cs │ ├── Query3.cs │ ├── QueryTypes.cs │ ├── Rand.cs │ ├── Ray2.cs │ ├── Ray2AAB2Intr.cs │ ├── Ray2Box2Intr.cs │ ├── Ray2Circle2Intr.cs │ ├── Ray2ConvexPolygon2Intr.cs │ ├── Ray2Polygon2Intr.cs │ ├── Ray2Ray2Intr.cs │ ├── Ray2Segment2Intr.cs │ ├── Ray2Triangle2Intr.cs │ ├── Ray3.cs │ ├── Ray3AAB3Intr.cs │ ├── Ray3Box3Intr.cs │ ├── Ray3Circle3Intr.cs │ ├── Ray3Plane3Intr.cs │ ├── Ray3Polygon3Intr.cs │ ├── Ray3Rectangle3Intr.cs │ ├── Ray3Sphere3Intr.cs │ ├── Ray3Triangle3Intr.cs │ ├── Rectangle3.cs │ ├── RootFinder.cs │ ├── Segment2.cs │ ├── Segment2AAB2Intr.cs │ ├── Segment2Box2Intr.cs │ ├── Segment2Circle2Intr.cs │ ├── Segment2ConvexPolygon2Intr.cs │ ├── Segment2Segment2Intr.cs │ ├── Segment2Triangle2Intr.cs │ ├── Segment3.cs │ ├── Segment3AAB3Intr.cs │ ├── Segment3Box3Intr.cs │ ├── Segment3Circle3Intr.cs │ ├── Segment3Plane3Intr.cs │ ├── Segment3Polygon3Intr.cs │ ├── Segment3Rectangle3Intr.cs │ ├── Segment3Sphere3Intr.cs │ ├── Segment3Triangle3Intr.cs │ ├── Sphere3.cs │ ├── Sphere3Sphere3Intr.cs │ ├── Sphere3Sphere3IntrTypes.cs │ ├── Triangle2.cs │ ├── Triangle2Triangle2Intr.cs │ ├── Triangle3.cs │ ├── Triangle3Triangle3Intr.cs │ ├── Vector2ex.cs │ └── Vector3ex.cs ├── DestMath.csproj ├── DestMath.sln ├── Properties │ └── AssemblyInfo.cs └── Unikon │ ├── Bounds.cs │ ├── Color.cs │ ├── Color32.cs │ ├── Component.cs │ ├── ComponentList.cs │ ├── Coroutine.cs │ ├── GameObject.cs │ ├── Mathf.cs │ ├── Matrix4x4.cs │ ├── MonoBehaviour.cs │ ├── Object.cs │ ├── Quaternion.cs │ ├── RangeInt.cs │ ├── Ray.cs │ ├── Ray2D.cs │ ├── RaycastHit.cs │ ├── RaycastHit2D.cs │ ├── Rect.cs │ ├── RotationDriveMode.cs │ ├── RotationOrder.cs │ ├── Scene.cs │ ├── Space.cs │ ├── Time.cs │ ├── Transform.cs │ ├── UnityString.cs │ ├── Vector2.cs │ ├── Vector3.cs │ └── Vector4.cs ├── Math+Library+for+Unity1.33.unitypackage ├── MathLibraryForUnity ├── Assets │ ├── MathLibraryForUnity.meta │ └── MathLibraryForUnity │ │ ├── Doc.meta │ │ ├── Doc │ │ ├── Help.pdf │ │ ├── Help.pdf.meta │ │ ├── VersionLog.txt │ │ └── VersionLog.txt.meta │ │ ├── Lib.meta │ │ ├── Lib │ │ ├── DestMath.XML │ │ ├── DestMath.XML.meta │ │ ├── DestMath.dll │ │ └── DestMath.dll.meta │ │ ├── Source.meta │ │ ├── Source │ │ ├── Curves.meta │ │ ├── Curves │ │ │ ├── CatmullRomSpline3.cs │ │ │ ├── CatmullRomSpline3.cs.meta │ │ │ ├── CubicSpline3.cs │ │ │ ├── CubicSpline3.cs.meta │ │ │ ├── SplineBase.cs │ │ │ └── SplineBase.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── CatmullRomSpline3Editor.cs │ │ │ ├── CatmullRomSpline3Editor.cs.meta │ │ │ ├── CubicSpline3Editor.cs │ │ │ ├── CubicSpline3Editor.cs.meta │ │ │ ├── SplineBaseEditor.cs │ │ │ └── SplineBaseEditor.cs.meta │ │ ├── Misc.meta │ │ └── Misc │ │ │ ├── PointsFilter.cs │ │ │ ├── PointsFilter.cs.meta │ │ │ ├── PoissonDiskSampler.cs │ │ │ ├── PoissonDiskSampler.cs.meta │ │ │ ├── RandomSamplers.cs │ │ │ ├── RandomSamplers.cs.meta │ │ │ ├── ShuffleBag.cs │ │ │ ├── ShuffleBag.cs.meta │ │ │ ├── Util.cs │ │ │ └── Util.cs.meta │ │ ├── Tests.meta │ │ └── Tests │ │ ├── Content.meta │ │ ├── Content │ │ ├── Aletter.mat │ │ ├── Aletter.mat.meta │ │ ├── Aletter.png │ │ ├── Aletter.png.meta │ │ ├── DistanceMap.mat │ │ ├── DistanceMap.mat.meta │ │ ├── DistanceMap.png │ │ ├── DistanceMap.png.meta │ │ ├── Point.mat │ │ ├── Point.mat.meta │ │ ├── SpawnMap.mat │ │ ├── SpawnMap.mat.meta │ │ ├── SpawnMap.png │ │ ├── SpawnMap.png.meta │ │ ├── Vector2Array_LetterA_1000pts.prefab │ │ ├── Vector2Array_LetterA_1000pts.prefab.meta │ │ ├── teapot.FBX │ │ └── teapot.FBX.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ ├── Approximation.meta │ │ ├── Approximation │ │ │ ├── 2D.meta │ │ │ ├── 2D │ │ │ │ ├── Test_ApprLineFit2.prefab │ │ │ │ └── Test_ApprLineFit2.prefab.meta │ │ │ ├── 3D.meta │ │ │ └── 3D │ │ │ │ ├── Test_ApprLineFit3.prefab │ │ │ │ ├── Test_ApprLineFit3.prefab.meta │ │ │ │ ├── Test_ApprPlaneFit3.prefab │ │ │ │ └── Test_ApprPlaneFit3.prefab.meta │ │ ├── Containment.meta │ │ ├── Containment │ │ │ ├── 2D.meta │ │ │ ├── 2D │ │ │ │ ├── Test_ContBox2IncludeBox2.prefab │ │ │ │ ├── Test_ContBox2IncludeBox2.prefab.meta │ │ │ │ ├── Test_ContCircle2IncludeCircle2.prefab │ │ │ │ ├── Test_ContCircle2IncludeCircle2.prefab.meta │ │ │ │ ├── Test_ContCreateAAB2.prefab │ │ │ │ ├── Test_ContCreateAAB2.prefab.meta │ │ │ │ ├── Test_ContCreateBox2.prefab │ │ │ │ ├── Test_ContCreateBox2.prefab.meta │ │ │ │ ├── Test_ContCreateCircle2.prefab │ │ │ │ ├── Test_ContCreateCircle2.prefab.meta │ │ │ │ ├── Test_ContCreateScribeCircle2.prefab │ │ │ │ ├── Test_ContCreateScribeCircle2.prefab.meta │ │ │ │ ├── Test_ContPoint2AAB2.prefab │ │ │ │ ├── Test_ContPoint2AAB2.prefab.meta │ │ │ │ ├── Test_ContPoint2Box2.prefab │ │ │ │ ├── Test_ContPoint2Box2.prefab.meta │ │ │ │ ├── Test_ContPoint2Circle2.prefab │ │ │ │ ├── Test_ContPoint2Circle2.prefab.meta │ │ │ │ ├── Test_ContPoint2ConvexPolygon2.prefab │ │ │ │ ├── Test_ContPoint2ConvexPolygon2.prefab.meta │ │ │ │ ├── Test_ContPoint2Polygon2.prefab │ │ │ │ ├── Test_ContPoint2Polygon2.prefab.meta │ │ │ │ ├── Test_ContPoint2Triangle2.prefab │ │ │ │ └── Test_ContPoint2Triangle2.prefab.meta │ │ │ ├── 3D.meta │ │ │ └── 3D │ │ │ │ ├── Test_ContBox3IncludeBox3.prefab │ │ │ │ ├── Test_ContBox3IncludeBox3.prefab.meta │ │ │ │ ├── Test_ContCreateAAB3.prefab │ │ │ │ ├── Test_ContCreateAAB3.prefab.meta │ │ │ │ ├── Test_ContCreateBox3.prefab │ │ │ │ ├── Test_ContCreateBox3.prefab.meta │ │ │ │ ├── Test_ContCreateScribeCircle3.prefab │ │ │ │ ├── Test_ContCreateScribeCircle3.prefab.meta │ │ │ │ ├── Test_ContCreateScribeSphere3.prefab │ │ │ │ ├── Test_ContCreateScribeSphere3.prefab.meta │ │ │ │ ├── Test_ContCreateSphere3.prefab │ │ │ │ ├── Test_ContCreateSphere3.prefab.meta │ │ │ │ ├── Test_ContPoint3AAB3.prefab │ │ │ │ ├── Test_ContPoint3AAB3.prefab.meta │ │ │ │ ├── Test_ContPoint3Box3.prefab │ │ │ │ ├── Test_ContPoint3Box3.prefab.meta │ │ │ │ ├── Test_ContPoint3Sphere3.prefab │ │ │ │ ├── Test_ContPoint3Sphere3.prefab.meta │ │ │ │ ├── Test_ContSphere3IncludeSphere3.prefab │ │ │ │ └── Test_ContSphere3IncludeSphere3.prefab.meta │ │ ├── Curves.meta │ │ ├── Curves │ │ │ ├── Test_CatmullRom3.prefab │ │ │ ├── Test_CatmullRom3.prefab.meta │ │ │ ├── Test_CubicSpline3.prefab │ │ │ ├── Test_CubicSpline3.prefab.meta │ │ │ ├── Test_FollowSpline.prefab │ │ │ ├── Test_FollowSpline.prefab.meta │ │ │ ├── Test_SplineInstance.prefab │ │ │ └── Test_SplineInstance.prefab.meta │ │ ├── Distance.meta │ │ ├── Distance │ │ │ ├── 2D.meta │ │ │ ├── 2D │ │ │ │ ├── Test_DistLine2Line2.prefab │ │ │ │ ├── Test_DistLine2Line2.prefab.meta │ │ │ │ ├── Test_DistLine2Ray2.prefab │ │ │ │ ├── Test_DistLine2Ray2.prefab.meta │ │ │ │ ├── Test_DistLine2Segment2.prefab │ │ │ │ ├── Test_DistLine2Segment2.prefab.meta │ │ │ │ ├── Test_DistPoint2AAB2.prefab │ │ │ │ ├── Test_DistPoint2AAB2.prefab.meta │ │ │ │ ├── Test_DistPoint2Box2.prefab │ │ │ │ ├── Test_DistPoint2Box2.prefab.meta │ │ │ │ ├── Test_DistPoint2Circle2.prefab │ │ │ │ ├── Test_DistPoint2Circle2.prefab.meta │ │ │ │ ├── Test_DistPoint2Line2.prefab │ │ │ │ ├── Test_DistPoint2Line2.prefab.meta │ │ │ │ ├── Test_DistPoint2Ray2.prefab │ │ │ │ ├── Test_DistPoint2Ray2.prefab.meta │ │ │ │ ├── Test_DistPoint2Segment2.prefab │ │ │ │ ├── Test_DistPoint2Segment2.prefab.meta │ │ │ │ ├── Test_DistPoint2Triangle2.prefab │ │ │ │ ├── Test_DistPoint2Triangle2.prefab.meta │ │ │ │ ├── Test_DistRay2Ray2.prefab │ │ │ │ ├── Test_DistRay2Ray2.prefab.meta │ │ │ │ ├── Test_DistRay2Segment2.prefab │ │ │ │ ├── Test_DistRay2Segment2.prefab.meta │ │ │ │ ├── Test_DistSegment2Segment2.prefab │ │ │ │ └── Test_DistSegment2Segment2.prefab.meta │ │ │ ├── 3D.meta │ │ │ └── 3D │ │ │ │ ├── Test_DistLine3Box3.prefab │ │ │ │ ├── Test_DistLine3Box3.prefab.meta │ │ │ │ ├── Test_DistLine3Line3.prefab │ │ │ │ ├── Test_DistLine3Line3.prefab.meta │ │ │ │ ├── Test_DistLine3Ray3.prefab │ │ │ │ ├── Test_DistLine3Ray3.prefab.meta │ │ │ │ ├── Test_DistLine3Segment3.prefab │ │ │ │ ├── Test_DistLine3Segment3.prefab.meta │ │ │ │ ├── Test_DistPoint3AAB3.prefab │ │ │ │ ├── Test_DistPoint3AAB3.prefab.meta │ │ │ │ ├── Test_DistPoint3Box3.prefab │ │ │ │ ├── Test_DistPoint3Box3.prefab.meta │ │ │ │ ├── Test_DistPoint3Circle3.prefab │ │ │ │ ├── Test_DistPoint3Circle3.prefab.meta │ │ │ │ ├── Test_DistPoint3HollowCircle3.prefab │ │ │ │ ├── Test_DistPoint3HollowCircle3.prefab.meta │ │ │ │ ├── Test_DistPoint3Line3.prefab │ │ │ │ ├── Test_DistPoint3Line3.prefab.meta │ │ │ │ ├── Test_DistPoint3Plane3.prefab │ │ │ │ ├── Test_DistPoint3Plane3.prefab.meta │ │ │ │ ├── Test_DistPoint3Ray3.prefab │ │ │ │ ├── Test_DistPoint3Ray3.prefab.meta │ │ │ │ ├── Test_DistPoint3Rectangle3.prefab │ │ │ │ ├── Test_DistPoint3Rectangle3.prefab.meta │ │ │ │ ├── Test_DistPoint3Segment3.prefab │ │ │ │ ├── Test_DistPoint3Segment3.prefab.meta │ │ │ │ ├── Test_DistPoint3Sphere3.prefab │ │ │ │ ├── Test_DistPoint3Sphere3.prefab.meta │ │ │ │ ├── Test_DistRay3Ray3.prefab │ │ │ │ ├── Test_DistRay3Ray3.prefab.meta │ │ │ │ ├── Test_DistRay3Segment3.prefab │ │ │ │ ├── Test_DistRay3Segment3.prefab.meta │ │ │ │ ├── Test_DistSegment3Box3.prefab │ │ │ │ ├── Test_DistSegment3Box3.prefab.meta │ │ │ │ ├── Test_DistSegment3Segment3.prefab │ │ │ │ └── Test_DistSegment3Segment3.prefab.meta │ │ ├── GeometricAlgorithms.meta │ │ ├── GeometricAlgorithms │ │ │ ├── Test_ConcaveHull2.prefab │ │ │ ├── Test_ConcaveHull2.prefab.meta │ │ │ ├── Test_ConvexHull2.prefab │ │ │ ├── Test_ConvexHull2.prefab.meta │ │ │ ├── Test_ConvexHull3.prefab │ │ │ └── Test_ConvexHull3.prefab.meta │ │ ├── Intersection.meta │ │ ├── Intersection │ │ │ ├── 2D.meta │ │ │ ├── 2D │ │ │ │ ├── Test_IntrAAB2AAB2.prefab │ │ │ │ ├── Test_IntrAAB2AAB2.prefab.meta │ │ │ │ ├── Test_IntrAAB2Circle2.prefab │ │ │ │ ├── Test_IntrAAB2Circle2.prefab.meta │ │ │ │ ├── Test_IntrBox2Box2.prefab │ │ │ │ ├── Test_IntrBox2Box2.prefab.meta │ │ │ │ ├── Test_IntrBox2Circle2.prefab │ │ │ │ ├── Test_IntrBox2Circle2.prefab.meta │ │ │ │ ├── Test_IntrCircle2Circle2.prefab │ │ │ │ ├── Test_IntrCircle2Circle2.prefab.meta │ │ │ │ ├── Test_IntrConvexPolygon2ConvexPolygon2.prefab │ │ │ │ ├── Test_IntrConvexPolygon2ConvexPolygon2.prefab.meta │ │ │ │ ├── Test_IntrLine2AAB2.prefab │ │ │ │ ├── Test_IntrLine2AAB2.prefab.meta │ │ │ │ ├── Test_IntrLine2Box2.prefab │ │ │ │ ├── Test_IntrLine2Box2.prefab.meta │ │ │ │ ├── Test_IntrLine2Circle2.prefab │ │ │ │ ├── Test_IntrLine2Circle2.prefab.meta │ │ │ │ ├── Test_IntrLine2ConvexPolygon2.prefab │ │ │ │ ├── Test_IntrLine2ConvexPolygon2.prefab.meta │ │ │ │ ├── Test_IntrLine2Line2.prefab │ │ │ │ ├── Test_IntrLine2Line2.prefab.meta │ │ │ │ ├── Test_IntrLine2Ray2.prefab │ │ │ │ ├── Test_IntrLine2Ray2.prefab.meta │ │ │ │ ├── Test_IntrLine2Segment2.prefab │ │ │ │ ├── Test_IntrLine2Segment2.prefab.meta │ │ │ │ ├── Test_IntrLine2Triangle2.prefab │ │ │ │ ├── Test_IntrLine2Triangle2.prefab.meta │ │ │ │ ├── Test_IntrRay2AAB2.prefab │ │ │ │ ├── Test_IntrRay2AAB2.prefab.meta │ │ │ │ ├── Test_IntrRay2Box2.prefab │ │ │ │ ├── Test_IntrRay2Box2.prefab.meta │ │ │ │ ├── Test_IntrRay2Circle2.prefab │ │ │ │ ├── Test_IntrRay2Circle2.prefab.meta │ │ │ │ ├── Test_IntrRay2ConvexPolygon2.prefab │ │ │ │ ├── Test_IntrRay2ConvexPolygon2.prefab.meta │ │ │ │ ├── Test_IntrRay2Polygon2.prefab │ │ │ │ ├── Test_IntrRay2Polygon2.prefab.meta │ │ │ │ ├── Test_IntrRay2Ray2.prefab │ │ │ │ ├── Test_IntrRay2Ray2.prefab.meta │ │ │ │ ├── Test_IntrRay2Segment2.prefab │ │ │ │ ├── Test_IntrRay2Segment2.prefab.meta │ │ │ │ ├── Test_IntrRay2Triangle2.prefab │ │ │ │ ├── Test_IntrRay2Triangle2.prefab.meta │ │ │ │ ├── Test_IntrSegment2AAB2.prefab │ │ │ │ ├── Test_IntrSegment2AAB2.prefab.meta │ │ │ │ ├── Test_IntrSegment2Box2.prefab │ │ │ │ ├── Test_IntrSegment2Box2.prefab.meta │ │ │ │ ├── Test_IntrSegment2Circle2.prefab │ │ │ │ ├── Test_IntrSegment2Circle2.prefab.meta │ │ │ │ ├── Test_IntrSegment2ConvexPolygon2.prefab │ │ │ │ ├── Test_IntrSegment2ConvexPolygon2.prefab.meta │ │ │ │ ├── Test_IntrSegment2Segment2.prefab │ │ │ │ ├── Test_IntrSegment2Segment2.prefab.meta │ │ │ │ ├── Test_IntrSegment2Triangle2.prefab │ │ │ │ ├── Test_IntrSegment2Triangle2.prefab.meta │ │ │ │ ├── Test_IntrTriangle2Triangle2.prefab │ │ │ │ └── Test_IntrTriangle2Triangle2.prefab.meta │ │ │ ├── 3D.meta │ │ │ └── 3D │ │ │ │ ├── Test_IntrAAB3AAB3.prefab │ │ │ │ ├── Test_IntrAAB3AAB3.prefab.meta │ │ │ │ ├── Test_IntrAAB3Sphere3.prefab │ │ │ │ ├── Test_IntrAAB3Sphere3.prefab.meta │ │ │ │ ├── Test_IntrBox3Box3.prefab │ │ │ │ ├── Test_IntrBox3Box3.prefab.meta │ │ │ │ ├── Test_IntrBox3Capsule3.prefab │ │ │ │ ├── Test_IntrBox3Capsule3.prefab.meta │ │ │ │ ├── Test_IntrBox3Sphere3.prefab │ │ │ │ ├── Test_IntrBox3Sphere3.prefab.meta │ │ │ │ ├── Test_IntrLine3AAB3.prefab │ │ │ │ ├── Test_IntrLine3AAB3.prefab.meta │ │ │ │ ├── Test_IntrLine3Box3.prefab │ │ │ │ ├── Test_IntrLine3Box3.prefab.meta │ │ │ │ ├── Test_IntrLine3Circle3.prefab │ │ │ │ ├── Test_IntrLine3Circle3.prefab.meta │ │ │ │ ├── Test_IntrLine3Plane3.prefab │ │ │ │ ├── Test_IntrLine3Plane3.prefab.meta │ │ │ │ ├── Test_IntrLine3Polygon3.prefab │ │ │ │ ├── Test_IntrLine3Polygon3.prefab.meta │ │ │ │ ├── Test_IntrLine3Rectangle3.prefab │ │ │ │ ├── Test_IntrLine3Rectangle3.prefab.meta │ │ │ │ ├── Test_IntrLine3Sphere3.prefab │ │ │ │ ├── Test_IntrLine3Sphere3.prefab.meta │ │ │ │ ├── Test_IntrLine3Triangle3.prefab │ │ │ │ ├── Test_IntrLine3Triangle3.prefab.meta │ │ │ │ ├── Test_IntrPlane3AAB3.prefab │ │ │ │ ├── Test_IntrPlane3AAB3.prefab.meta │ │ │ │ ├── Test_IntrPlane3Box3.prefab │ │ │ │ ├── Test_IntrPlane3Box3.prefab.meta │ │ │ │ ├── Test_IntrPlane3Plane3.prefab │ │ │ │ ├── Test_IntrPlane3Plane3.prefab.meta │ │ │ │ ├── Test_IntrPlane3Sphere3.prefab │ │ │ │ ├── Test_IntrPlane3Sphere3.prefab.meta │ │ │ │ ├── Test_IntrPlane3Triangle3.prefab │ │ │ │ ├── Test_IntrPlane3Triangle3.prefab.meta │ │ │ │ ├── Test_IntrRay3AAB3.prefab │ │ │ │ ├── Test_IntrRay3AAB3.prefab.meta │ │ │ │ ├── Test_IntrRay3Box3.prefab │ │ │ │ ├── Test_IntrRay3Box3.prefab.meta │ │ │ │ ├── Test_IntrRay3Circle3.prefab │ │ │ │ ├── Test_IntrRay3Circle3.prefab.meta │ │ │ │ ├── Test_IntrRay3Plane3.prefab │ │ │ │ ├── Test_IntrRay3Plane3.prefab.meta │ │ │ │ ├── Test_IntrRay3Polygon3.prefab │ │ │ │ ├── Test_IntrRay3Polygon3.prefab.meta │ │ │ │ ├── Test_IntrRay3Rectangle3.prefab │ │ │ │ ├── Test_IntrRay3Rectangle3.prefab.meta │ │ │ │ ├── Test_IntrRay3Sphere3.prefab │ │ │ │ ├── Test_IntrRay3Sphere3.prefab.meta │ │ │ │ ├── Test_IntrRay3Triangle3.prefab │ │ │ │ ├── Test_IntrRay3Triangle3.prefab.meta │ │ │ │ ├── Test_IntrSegment3AAB3.prefab │ │ │ │ ├── Test_IntrSegment3AAB3.prefab.meta │ │ │ │ ├── Test_IntrSegment3Box3.prefab │ │ │ │ ├── Test_IntrSegment3Box3.prefab.meta │ │ │ │ ├── Test_IntrSegment3Circle3.prefab │ │ │ │ ├── Test_IntrSegment3Circle3.prefab.meta │ │ │ │ ├── Test_IntrSegment3Plane3.prefab │ │ │ │ ├── Test_IntrSegment3Plane3.prefab.meta │ │ │ │ ├── Test_IntrSegment3Polygon3.prefab │ │ │ │ ├── Test_IntrSegment3Polygon3.prefab.meta │ │ │ │ ├── Test_IntrSegment3Rectangle3.prefab │ │ │ │ ├── Test_IntrSegment3Rectangle3.prefab.meta │ │ │ │ ├── Test_IntrSegment3Sphere3.prefab │ │ │ │ ├── Test_IntrSegment3Sphere3.prefab.meta │ │ │ │ ├── Test_IntrSegment3Triangle3.prefab │ │ │ │ ├── Test_IntrSegment3Triangle3.prefab.meta │ │ │ │ ├── Test_IntrSphere3Sphere3.prefab │ │ │ │ ├── Test_IntrSphere3Sphere3.prefab.meta │ │ │ │ ├── Test_IntrTriangle3Triangle3.prefab │ │ │ │ └── Test_IntrTriangle3Triangle3.prefab.meta │ │ ├── Misc.meta │ │ ├── Misc │ │ │ ├── Test_CylindricalCoords.prefab │ │ │ ├── Test_CylindricalCoords.prefab.meta │ │ │ ├── Test_Interpolation.prefab │ │ │ ├── Test_Interpolation.prefab.meta │ │ │ ├── Test_MathfEx.prefab │ │ │ ├── Test_MathfEx.prefab.meta │ │ │ ├── Test_Matrix4x4Ex.prefab │ │ │ ├── Test_Matrix4x4Ex.prefab.meta │ │ │ ├── Test_OverlappedStep.prefab │ │ │ ├── Test_OverlappedStep.prefab.meta │ │ │ ├── Test_PoissonDiskSampler.prefab │ │ │ ├── Test_PoissonDiskSampler.prefab.meta │ │ │ ├── Test_PolarCoords.prefab │ │ │ ├── Test_PolarCoords.prefab.meta │ │ │ ├── Test_Random.prefab │ │ │ ├── Test_Random.prefab.meta │ │ │ ├── Test_Random2D.prefab │ │ │ ├── Test_Random2D.prefab.meta │ │ │ ├── Test_Random3D.prefab │ │ │ ├── Test_Random3D.prefab.meta │ │ │ ├── Test_RandomDistribution.prefab │ │ │ ├── Test_RandomDistribution.prefab.meta │ │ │ ├── Test_RandomInTriangle.prefab │ │ │ ├── Test_RandomInTriangle.prefab.meta │ │ │ ├── Test_RandomOnMesh.prefab │ │ │ ├── Test_RandomOnMesh.prefab.meta │ │ │ ├── Test_RandomRotation.prefab │ │ │ ├── Test_RandomRotation.prefab.meta │ │ │ ├── Test_SphericalCoords.prefab │ │ │ └── Test_SphericalCoords.prefab.meta │ │ ├── NumericalAnalysis.meta │ │ ├── NumericalAnalysis │ │ │ ├── Test_NumericalBrentsMethod.prefab │ │ │ ├── Test_NumericalBrentsMethod.prefab.meta │ │ │ ├── Test_NumericalIntegrator.prefab │ │ │ ├── Test_NumericalIntegrator.prefab.meta │ │ │ ├── Test_NumericalLinearSystem.prefab │ │ │ ├── Test_NumericalLinearSystem.prefab.meta │ │ │ ├── Test_NumericalOdeSolver.prefab │ │ │ ├── Test_NumericalOdeSolver.prefab.meta │ │ │ ├── Test_NumericalPolyRoots.prefab │ │ │ └── Test_NumericalPolyRoots.prefab.meta │ │ ├── Objects.meta │ │ ├── Objects │ │ │ ├── Test_Polygon2.prefab │ │ │ ├── Test_Polygon2.prefab.meta │ │ │ ├── Test_Polygon3.prefab │ │ │ ├── Test_Polygon3.prefab.meta │ │ │ ├── Test_Rectangle3.prefab │ │ │ ├── Test_Rectangle3.prefab.meta │ │ │ ├── Test_Triangle2.prefab │ │ │ └── Test_Triangle2.prefab.meta │ │ ├── Query.meta │ │ └── Query │ │ │ ├── 2D.meta │ │ │ ├── 2D │ │ │ ├── Test_Line2Sides.prefab │ │ │ ├── Test_Line2Sides.prefab.meta │ │ │ ├── Test_Triangle2Sides.prefab │ │ │ └── Test_Triangle2Sides.prefab.meta │ │ │ ├── 3D.meta │ │ │ └── 3D │ │ │ ├── Test_Plane3Sides.prefab │ │ │ └── Test_Plane3Sides.prefab.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── Approximation.meta │ │ ├── Approximation │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── Test_ApprLineFit2.cs │ │ │ └── Test_ApprLineFit2.cs.meta │ │ ├── 3D.meta │ │ └── 3D │ │ │ ├── Test_ApprLineFit3.cs │ │ │ ├── Test_ApprLineFit3.cs.meta │ │ │ ├── Test_ApprPlaneFit3.cs │ │ │ └── Test_ApprPlaneFit3.cs.meta │ │ ├── Containment.meta │ │ ├── Containment │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── Test_ContBox2IncludeBox2.cs │ │ │ ├── Test_ContBox2IncludeBox2.cs.meta │ │ │ ├── Test_ContCircle2IncludeCircle2.cs │ │ │ ├── Test_ContCircle2IncludeCircle2.cs.meta │ │ │ ├── Test_ContCreateAAB2.cs │ │ │ ├── Test_ContCreateAAB2.cs.meta │ │ │ ├── Test_ContCreateBox2.cs │ │ │ ├── Test_ContCreateBox2.cs.meta │ │ │ ├── Test_ContCreateCircle2.cs │ │ │ ├── Test_ContCreateCircle2.cs.meta │ │ │ ├── Test_ContCreateScribeCircle2.cs │ │ │ ├── Test_ContCreateScribeCircle2.cs.meta │ │ │ ├── Test_ContPoint2AAB2.cs │ │ │ ├── Test_ContPoint2AAB2.cs.meta │ │ │ ├── Test_ContPoint2Box2.cs │ │ │ ├── Test_ContPoint2Box2.cs.meta │ │ │ ├── Test_ContPoint2Circle2.cs │ │ │ ├── Test_ContPoint2Circle2.cs.meta │ │ │ ├── Test_ContPoint2ConvexPolygon2.cs │ │ │ ├── Test_ContPoint2ConvexPolygon2.cs.meta │ │ │ ├── Test_ContPoint2Polygon2.cs │ │ │ ├── Test_ContPoint2Polygon2.cs.meta │ │ │ ├── Test_ContPoint2Triangle2.cs │ │ │ └── Test_ContPoint2Triangle2.cs.meta │ │ ├── 3D.meta │ │ └── 3D │ │ │ ├── Test_ContBox3IncludeBox3.cs │ │ │ ├── Test_ContBox3IncludeBox3.cs.meta │ │ │ ├── Test_ContCreateAAB3.cs │ │ │ ├── Test_ContCreateAAB3.cs.meta │ │ │ ├── Test_ContCreateBox3.cs │ │ │ ├── Test_ContCreateBox3.cs.meta │ │ │ ├── Test_ContCreateScribeCircle3.cs │ │ │ ├── Test_ContCreateScribeCircle3.cs.meta │ │ │ ├── Test_ContCreateScribeSphere3.cs │ │ │ ├── Test_ContCreateScribeSphere3.cs.meta │ │ │ ├── Test_ContCreateSphere3.cs │ │ │ ├── Test_ContCreateSphere3.cs.meta │ │ │ ├── Test_ContPoint3AAB3.cs │ │ │ ├── Test_ContPoint3AAB3.cs.meta │ │ │ ├── Test_ContPoint3Box3.cs │ │ │ ├── Test_ContPoint3Box3.cs.meta │ │ │ ├── Test_ContPoint3Sphere3.cs │ │ │ ├── Test_ContPoint3Sphere3.cs.meta │ │ │ ├── Test_ContSphere3IncludeSphere3.cs │ │ │ └── Test_ContSphere3IncludeSphere3.cs.meta │ │ ├── Curves.meta │ │ ├── Curves │ │ ├── Test_CatmullRom3.cs │ │ ├── Test_CatmullRom3.cs.meta │ │ ├── Test_CubicSpline3.cs │ │ ├── Test_CubicSpline3.cs.meta │ │ ├── Test_FollowSpline.cs │ │ └── Test_FollowSpline.cs.meta │ │ ├── Distance.meta │ │ ├── Distance │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── Test_DistLine2Line2.cs │ │ │ ├── Test_DistLine2Line2.cs.meta │ │ │ ├── Test_DistLine2Ray2.cs │ │ │ ├── Test_DistLine2Ray2.cs.meta │ │ │ ├── Test_DistLine2Segment2.cs │ │ │ ├── Test_DistLine2Segment2.cs.meta │ │ │ ├── Test_DistPoint2AAB2.cs │ │ │ ├── Test_DistPoint2AAB2.cs.meta │ │ │ ├── Test_DistPoint2Box2.cs │ │ │ ├── Test_DistPoint2Box2.cs.meta │ │ │ ├── Test_DistPoint2Circle2.cs │ │ │ ├── Test_DistPoint2Circle2.cs.meta │ │ │ ├── Test_DistPoint2Line2.cs │ │ │ ├── Test_DistPoint2Line2.cs.meta │ │ │ ├── Test_DistPoint2Ray2.cs │ │ │ ├── Test_DistPoint2Ray2.cs.meta │ │ │ ├── Test_DistPoint2Segment2.cs │ │ │ ├── Test_DistPoint2Segment2.cs.meta │ │ │ ├── Test_DistPoint2Triangle2.cs │ │ │ ├── Test_DistPoint2Triangle2.cs.meta │ │ │ ├── Test_DistRay2Ray2.cs │ │ │ ├── Test_DistRay2Ray2.cs.meta │ │ │ ├── Test_DistRay2Segment2.cs │ │ │ ├── Test_DistRay2Segment2.cs.meta │ │ │ ├── Test_DistSegment2Segment2.cs │ │ │ └── Test_DistSegment2Segment2.cs.meta │ │ ├── 3D.meta │ │ └── 3D │ │ │ ├── Test_DistLine3Box3.cs │ │ │ ├── Test_DistLine3Box3.cs.meta │ │ │ ├── Test_DistLine3Line3.cs │ │ │ ├── Test_DistLine3Line3.cs.meta │ │ │ ├── Test_DistLine3Ray3.cs │ │ │ ├── Test_DistLine3Ray3.cs.meta │ │ │ ├── Test_DistLine3Segment3.cs │ │ │ ├── Test_DistLine3Segment3.cs.meta │ │ │ ├── Test_DistPoint3AAB3.cs │ │ │ ├── Test_DistPoint3AAB3.cs.meta │ │ │ ├── Test_DistPoint3Box3.cs │ │ │ ├── Test_DistPoint3Box3.cs.meta │ │ │ ├── Test_DistPoint3Circle3.cs │ │ │ ├── Test_DistPoint3Circle3.cs.meta │ │ │ ├── Test_DistPoint3HollowCircle3.cs │ │ │ ├── Test_DistPoint3HollowCircle3.cs.meta │ │ │ ├── Test_DistPoint3Line3.cs │ │ │ ├── Test_DistPoint3Line3.cs.meta │ │ │ ├── Test_DistPoint3Plane3.cs │ │ │ ├── Test_DistPoint3Plane3.cs.meta │ │ │ ├── Test_DistPoint3Ray3.cs │ │ │ ├── Test_DistPoint3Ray3.cs.meta │ │ │ ├── Test_DistPoint3Rectangle3.cs │ │ │ ├── Test_DistPoint3Rectangle3.cs.meta │ │ │ ├── Test_DistPoint3Segment3.cs │ │ │ ├── Test_DistPoint3Segment3.cs.meta │ │ │ ├── Test_DistPoint3Sphere3.cs │ │ │ ├── Test_DistPoint3Sphere3.cs.meta │ │ │ ├── Test_DistRay3Ray3.cs │ │ │ ├── Test_DistRay3Ray3.cs.meta │ │ │ ├── Test_DistRay3Segment3.cs │ │ │ ├── Test_DistRay3Segment3.cs.meta │ │ │ ├── Test_DistSegment3Box3.cs │ │ │ ├── Test_DistSegment3Box3.cs.meta │ │ │ ├── Test_DistSegment3Segment3.cs │ │ │ └── Test_DistSegment3Segment3.cs.meta │ │ ├── GeometricAlgorithms.meta │ │ ├── GeometricAlgorithms │ │ ├── Test_ConcaveHull2.cs │ │ ├── Test_ConcaveHull2.cs.meta │ │ ├── Test_ConvexHull2.cs │ │ ├── Test_ConvexHull2.cs.meta │ │ ├── Test_ConvexHull3.cs │ │ └── Test_ConvexHull3.cs.meta │ │ ├── Intersection.meta │ │ ├── Intersection │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── Test_IntrAAB2AAB2.cs │ │ │ ├── Test_IntrAAB2AAB2.cs.meta │ │ │ ├── Test_IntrAAB2Circle2.cs │ │ │ ├── Test_IntrAAB2Circle2.cs.meta │ │ │ ├── Test_IntrBox2Box2.cs │ │ │ ├── Test_IntrBox2Box2.cs.meta │ │ │ ├── Test_IntrBox2Circle2.cs │ │ │ ├── Test_IntrBox2Circle2.cs.meta │ │ │ ├── Test_IntrCircle2Circle2.cs │ │ │ ├── Test_IntrCircle2Circle2.cs.meta │ │ │ ├── Test_IntrConvexPolygon2ConvexPolygon2.cs │ │ │ ├── Test_IntrConvexPolygon2ConvexPolygon2.cs.meta │ │ │ ├── Test_IntrLine2AAB2.cs │ │ │ ├── Test_IntrLine2AAB2.cs.meta │ │ │ ├── Test_IntrLine2Box2.cs │ │ │ ├── Test_IntrLine2Box2.cs.meta │ │ │ ├── Test_IntrLine2Circle2.cs │ │ │ ├── Test_IntrLine2Circle2.cs.meta │ │ │ ├── Test_IntrLine2ConvexPolygon2.cs │ │ │ ├── Test_IntrLine2ConvexPolygon2.cs.meta │ │ │ ├── Test_IntrLine2Line2.cs │ │ │ ├── Test_IntrLine2Line2.cs.meta │ │ │ ├── Test_IntrLine2Ray2.cs │ │ │ ├── Test_IntrLine2Ray2.cs.meta │ │ │ ├── Test_IntrLine2Segment2.cs │ │ │ ├── Test_IntrLine2Segment2.cs.meta │ │ │ ├── Test_IntrLine2Triangle2.cs │ │ │ ├── Test_IntrLine2Triangle2.cs.meta │ │ │ ├── Test_IntrRay2AAB2.cs │ │ │ ├── Test_IntrRay2AAB2.cs.meta │ │ │ ├── Test_IntrRay2Box2.cs │ │ │ ├── Test_IntrRay2Box2.cs.meta │ │ │ ├── Test_IntrRay2Circle2.cs │ │ │ ├── Test_IntrRay2Circle2.cs.meta │ │ │ ├── Test_IntrRay2ConvexPolygon2.cs │ │ │ ├── Test_IntrRay2ConvexPolygon2.cs.meta │ │ │ ├── Test_IntrRay2Polygon2.cs │ │ │ ├── Test_IntrRay2Polygon2.cs.meta │ │ │ ├── Test_IntrRay2Ray2.cs │ │ │ ├── Test_IntrRay2Ray2.cs.meta │ │ │ ├── Test_IntrRay2Segment2.cs │ │ │ ├── Test_IntrRay2Segment2.cs.meta │ │ │ ├── Test_IntrRay2Triangle2.cs │ │ │ ├── Test_IntrRay2Triangle2.cs.meta │ │ │ ├── Test_IntrSegment2AAB2.cs │ │ │ ├── Test_IntrSegment2AAB2.cs.meta │ │ │ ├── Test_IntrSegment2Box2.cs │ │ │ ├── Test_IntrSegment2Box2.cs.meta │ │ │ ├── Test_IntrSegment2Circle2.cs │ │ │ ├── Test_IntrSegment2Circle2.cs.meta │ │ │ ├── Test_IntrSegment2ConvexPolygon2.cs │ │ │ ├── Test_IntrSegment2ConvexPolygon2.cs.meta │ │ │ ├── Test_IntrSegment2Segment2.cs │ │ │ ├── Test_IntrSegment2Segment2.cs.meta │ │ │ ├── Test_IntrSegment2Triangle2.cs │ │ │ ├── Test_IntrSegment2Triangle2.cs.meta │ │ │ ├── Test_IntrTriangle2Triangle2.cs │ │ │ └── Test_IntrTriangle2Triangle2.cs.meta │ │ ├── 3D.meta │ │ └── 3D │ │ │ ├── Test_IntrAAB3AAB3.cs │ │ │ ├── Test_IntrAAB3AAB3.cs.meta │ │ │ ├── Test_IntrAAB3Sphere3.cs │ │ │ ├── Test_IntrAAB3Sphere3.cs.meta │ │ │ ├── Test_IntrBox3Box3.cs │ │ │ ├── Test_IntrBox3Box3.cs.meta │ │ │ ├── Test_IntrBox3Capsule3.cs │ │ │ ├── Test_IntrBox3Capsule3.cs.meta │ │ │ ├── Test_IntrBox3Sphere3.cs │ │ │ ├── Test_IntrBox3Sphere3.cs.meta │ │ │ ├── Test_IntrLine3AAB3.cs │ │ │ ├── Test_IntrLine3AAB3.cs.meta │ │ │ ├── Test_IntrLine3Box3.cs │ │ │ ├── Test_IntrLine3Box3.cs.meta │ │ │ ├── Test_IntrLine3Circle3.cs │ │ │ ├── Test_IntrLine3Circle3.cs.meta │ │ │ ├── Test_IntrLine3Plane3.cs │ │ │ ├── Test_IntrLine3Plane3.cs.meta │ │ │ ├── Test_IntrLine3Polygon3.cs │ │ │ ├── Test_IntrLine3Polygon3.cs.meta │ │ │ ├── Test_IntrLine3Rectangle3.cs │ │ │ ├── Test_IntrLine3Rectangle3.cs.meta │ │ │ ├── Test_IntrLine3Sphere3.cs │ │ │ ├── Test_IntrLine3Sphere3.cs.meta │ │ │ ├── Test_IntrLine3Triangle3.cs │ │ │ ├── Test_IntrLine3Triangle3.cs.meta │ │ │ ├── Test_IntrPlane3AAB3.cs │ │ │ ├── Test_IntrPlane3AAB3.cs.meta │ │ │ ├── Test_IntrPlane3Box3.cs │ │ │ ├── Test_IntrPlane3Box3.cs.meta │ │ │ ├── Test_IntrPlane3Plane3.cs │ │ │ ├── Test_IntrPlane3Plane3.cs.meta │ │ │ ├── Test_IntrPlane3Sphere3.cs │ │ │ ├── Test_IntrPlane3Sphere3.cs.meta │ │ │ ├── Test_IntrPlane3Triangle3.cs │ │ │ ├── Test_IntrPlane3Triangle3.cs.meta │ │ │ ├── Test_IntrRay3AAB3.cs │ │ │ ├── Test_IntrRay3AAB3.cs.meta │ │ │ ├── Test_IntrRay3Box3.cs │ │ │ ├── Test_IntrRay3Box3.cs.meta │ │ │ ├── Test_IntrRay3Circle3.cs │ │ │ ├── Test_IntrRay3Circle3.cs.meta │ │ │ ├── Test_IntrRay3Plane3.cs │ │ │ ├── Test_IntrRay3Plane3.cs.meta │ │ │ ├── Test_IntrRay3Polygon3.cs │ │ │ ├── Test_IntrRay3Polygon3.cs.meta │ │ │ ├── Test_IntrRay3Rectangle3.cs │ │ │ ├── Test_IntrRay3Rectangle3.cs.meta │ │ │ ├── Test_IntrRay3Sphere3.cs │ │ │ ├── Test_IntrRay3Sphere3.cs.meta │ │ │ ├── Test_IntrRay3Triangle3.cs │ │ │ ├── Test_IntrRay3Triangle3.cs.meta │ │ │ ├── Test_IntrSegment3AAB3.cs │ │ │ ├── Test_IntrSegment3AAB3.cs.meta │ │ │ ├── Test_IntrSegment3Box3.cs │ │ │ ├── Test_IntrSegment3Box3.cs.meta │ │ │ ├── Test_IntrSegment3Circle3.cs │ │ │ ├── Test_IntrSegment3Circle3.cs.meta │ │ │ ├── Test_IntrSegment3Plane3.cs │ │ │ ├── Test_IntrSegment3Plane3.cs.meta │ │ │ ├── Test_IntrSegment3Polygon3.cs │ │ │ ├── Test_IntrSegment3Polygon3.cs.meta │ │ │ ├── Test_IntrSegment3Rectangle3.cs │ │ │ ├── Test_IntrSegment3Rectangle3.cs.meta │ │ │ ├── Test_IntrSegment3Sphere3.cs │ │ │ ├── Test_IntrSegment3Sphere3.cs.meta │ │ │ ├── Test_IntrSegment3Triangle3.cs │ │ │ ├── Test_IntrSegment3Triangle3.cs.meta │ │ │ ├── Test_IntrSphere3Sphere3.cs │ │ │ ├── Test_IntrSphere3Sphere3.cs.meta │ │ │ ├── Test_IntrTriangle3Triangle3.cs │ │ │ └── Test_IntrTriangle3Triangle3.cs.meta │ │ ├── Misc.meta │ │ ├── Misc │ │ ├── Test_CylindricalCoords.cs │ │ ├── Test_CylindricalCoords.cs.meta │ │ ├── Test_Interpolation.cs │ │ ├── Test_Interpolation.cs.meta │ │ ├── Test_MathfEx.cs │ │ ├── Test_MathfEx.cs.meta │ │ ├── Test_Matrix4x4Ex.cs │ │ ├── Test_Matrix4x4Ex.cs.meta │ │ ├── Test_OverlappedStep.cs │ │ ├── Test_OverlappedStep.cs.meta │ │ ├── Test_PoissonDiskSampler.cs │ │ ├── Test_PoissonDiskSampler.cs.meta │ │ ├── Test_PolarCoords.cs │ │ ├── Test_PolarCoords.cs.meta │ │ ├── Test_Random.cs │ │ ├── Test_Random.cs.meta │ │ ├── Test_Random2D.cs │ │ ├── Test_Random2D.cs.meta │ │ ├── Test_Random3D.cs │ │ ├── Test_Random3D.cs.meta │ │ ├── Test_RandomDistribution.cs │ │ ├── Test_RandomDistribution.cs.meta │ │ ├── Test_RandomInTriangle.cs │ │ ├── Test_RandomInTriangle.cs.meta │ │ ├── Test_RandomOnMesh.cs │ │ ├── Test_RandomOnMesh.cs.meta │ │ ├── Test_RandomRotation.cs │ │ ├── Test_RandomRotation.cs.meta │ │ ├── Test_SphericalCoords.cs │ │ ├── Test_SphericalCoords.cs.meta │ │ ├── Test_Vector2Array.cs │ │ ├── Test_Vector2Array.cs.meta │ │ ├── Test_Vector3Array.cs │ │ └── Test_Vector3Array.cs.meta │ │ ├── NumericalAnalysis.meta │ │ ├── NumericalAnalysis │ │ ├── Test_NumericalBrentsMethod.cs │ │ ├── Test_NumericalBrentsMethod.cs.meta │ │ ├── Test_NumericalIntegrator.cs │ │ ├── Test_NumericalIntegrator.cs.meta │ │ ├── Test_NumericalLinearSystem.cs │ │ ├── Test_NumericalLinearSystem.cs.meta │ │ ├── Test_NumericalOdeSolver.cs │ │ ├── Test_NumericalOdeSolver.cs.meta │ │ ├── Test_NumericalPolyRoots.cs │ │ └── Test_NumericalPolyRoots.cs.meta │ │ ├── Objects.meta │ │ ├── Objects │ │ ├── Test_Polygon2.cs │ │ ├── Test_Polygon2.cs.meta │ │ ├── Test_Polygon3.cs │ │ ├── Test_Polygon3.cs.meta │ │ ├── Test_Rectangle3.cs │ │ ├── Test_Rectangle3.cs.meta │ │ ├── Test_Triangle2.cs │ │ └── Test_Triangle2.cs.meta │ │ ├── Query.meta │ │ ├── Query │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── Test_Line2Sides.cs │ │ │ ├── Test_Line2Sides.cs.meta │ │ │ ├── Test_Triangle2Sides.cs │ │ │ └── Test_Triangle2Sides.cs.meta │ │ ├── 3D.meta │ │ └── 3D │ │ │ ├── Test_Plane3Sides.cs │ │ │ └── Test_Plane3Sides.cs.meta │ │ ├── Test_Base.cs │ │ └── Test_Base.cs.meta ├── MathLibraryForUnity.Editor.csproj ├── MathLibraryForUnity.csproj ├── MathLibraryForUnity.sln └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ └── UnityConnectSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/.gitignore -------------------------------------------------------------------------------- /DestMath/Dest.Math/AAB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/AAB2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/AAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/AAB3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Approximation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Approximation.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Box2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Box2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Box3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/BrentsRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/BrentsRoot.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Capsule3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Capsule3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Circle2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Circle2Circle2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Circle2Circle2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Circle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Circle3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/ConcaveHull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/ConcaveHull.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/ConcaveHull2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/ConcaveHull2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/ConvexHull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/ConvexHull.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/ConvexHull1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/ConvexHull1.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/ConvexHull2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/ConvexHull2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/ConvexHull3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/ConvexHull3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/CubicRoots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/CubicRoots.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/DefaultLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/DefaultLogger.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Distance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Distance.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Edge2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Edge2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Edge3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Edge3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/EigenData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/EigenData.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/EigenDecomposition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/EigenDecomposition.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/EmptyLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/EmptyLogger.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Float6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Float6.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/ILogger.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Integrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Integrator.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Intersection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Intersection.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/IntersectionTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/IntersectionTypes.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2AAB2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2AAB2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2Box2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2Box2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2Circle2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2Circle2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2ConvexPolygon2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2ConvexPolygon2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2Line2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2Line2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2Ray2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2Ray2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2Segment2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2Segment2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line2Triangle2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line2Triangle2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3AAB3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3AAB3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3Box3Dist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3Box3Dist.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3Box3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3Box3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3Circle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3Circle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3Plane3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3Plane3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3Polygon3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3Polygon3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3Rectangle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3Rectangle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3Sphere3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3Sphere3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Line3Triangle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Line3Triangle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/LinearSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/LinearSystem.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Logger.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Mathfex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Mathfex.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Matrix4x4ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Matrix4x4ex.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/OdeEuler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/OdeEuler.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/OdeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/OdeFunction.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/OdeMidpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/OdeMidpoint.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/OdeRungeKutta4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/OdeRungeKutta4.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/OdeSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/OdeSolver.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Orientations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Orientations.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Plane3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Plane3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Plane3Plane3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Plane3Plane3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Plane3Sphere3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Plane3Sphere3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Plane3Triangle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Plane3Triangle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Polygon2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Polygon2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Polygon3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Polygon3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Polynomial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Polynomial.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/ProjectionPlanes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/ProjectionPlanes.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/QuadraticRoots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/QuadraticRoots.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/QuarticRoots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/QuarticRoots.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Quaternionex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Quaternionex.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Query.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Query2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Query2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Query3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Query3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/QueryTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/QueryTypes.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Rand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Rand.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2AAB2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2AAB2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2Box2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2Box2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2Circle2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2Circle2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2ConvexPolygon2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2ConvexPolygon2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2Polygon2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2Polygon2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2Ray2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2Ray2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2Segment2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2Segment2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray2Triangle2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray2Triangle2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3AAB3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3AAB3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3Box3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3Box3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3Circle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3Circle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3Plane3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3Plane3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3Polygon3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3Polygon3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3Rectangle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3Rectangle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3Sphere3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3Sphere3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Ray3Triangle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Ray3Triangle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Rectangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Rectangle3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/RootFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/RootFinder.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment2AAB2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment2AAB2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment2Box2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment2Box2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment2Circle2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment2Circle2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment2ConvexPolygon2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment2ConvexPolygon2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment2Segment2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment2Segment2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment2Triangle2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment2Triangle2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3AAB3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3AAB3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3Box3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3Box3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3Circle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3Circle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3Plane3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3Plane3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3Polygon3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3Polygon3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3Rectangle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3Rectangle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3Sphere3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3Sphere3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Segment3Triangle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Segment3Triangle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Sphere3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Sphere3Sphere3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Sphere3Sphere3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Sphere3Sphere3IntrTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Sphere3Sphere3IntrTypes.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Triangle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Triangle2.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Triangle2Triangle2Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Triangle2Triangle2Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Triangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Triangle3.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Triangle3Triangle3Intr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Triangle3Triangle3Intr.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Vector2ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Vector2ex.cs -------------------------------------------------------------------------------- /DestMath/Dest.Math/Vector3ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Dest.Math/Vector3ex.cs -------------------------------------------------------------------------------- /DestMath/DestMath.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/DestMath.csproj -------------------------------------------------------------------------------- /DestMath/DestMath.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/DestMath.sln -------------------------------------------------------------------------------- /DestMath/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Bounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Bounds.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Color.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Color32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Color32.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Component.cs -------------------------------------------------------------------------------- /DestMath/Unikon/ComponentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/ComponentList.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Coroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Coroutine.cs -------------------------------------------------------------------------------- /DestMath/Unikon/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/GameObject.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Mathf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Mathf.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Matrix4x4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Matrix4x4.cs -------------------------------------------------------------------------------- /DestMath/Unikon/MonoBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/MonoBehaviour.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Object.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Quaternion.cs -------------------------------------------------------------------------------- /DestMath/Unikon/RangeInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/RangeInt.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Ray.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Ray2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Ray2D.cs -------------------------------------------------------------------------------- /DestMath/Unikon/RaycastHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/RaycastHit.cs -------------------------------------------------------------------------------- /DestMath/Unikon/RaycastHit2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/RaycastHit2D.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Rect.cs -------------------------------------------------------------------------------- /DestMath/Unikon/RotationDriveMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/RotationDriveMode.cs -------------------------------------------------------------------------------- /DestMath/Unikon/RotationOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/RotationOrder.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Scene.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Space.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Space.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Time.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Transform.cs -------------------------------------------------------------------------------- /DestMath/Unikon/UnityString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/UnityString.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Vector2.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Vector3.cs -------------------------------------------------------------------------------- /DestMath/Unikon/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/DestMath/Unikon/Vector4.cs -------------------------------------------------------------------------------- /Math+Library+for+Unity1.33.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/Math+Library+for+Unity1.33.unitypackage -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Doc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Doc.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Doc/Help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Doc/Help.pdf -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Doc/Help.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Doc/Help.pdf.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Doc/VersionLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Doc/VersionLog.txt -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Doc/VersionLog.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Doc/VersionLog.txt.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Lib.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Lib/DestMath.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Lib/DestMath.XML -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Lib/DestMath.XML.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Lib/DestMath.XML.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Lib/DestMath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Lib/DestMath.dll -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Lib/DestMath.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Lib/DestMath.dll.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/CatmullRomSpline3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/CatmullRomSpline3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/CatmullRomSpline3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/CatmullRomSpline3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/CubicSpline3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/CubicSpline3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/CubicSpline3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/CubicSpline3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/SplineBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/SplineBase.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/SplineBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Curves/SplineBase.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/CatmullRomSpline3Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/CatmullRomSpline3Editor.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/CatmullRomSpline3Editor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/CatmullRomSpline3Editor.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/CubicSpline3Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/CubicSpline3Editor.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/CubicSpline3Editor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/CubicSpline3Editor.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/SplineBaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/SplineBaseEditor.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/SplineBaseEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Editor/SplineBaseEditor.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/PointsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/PointsFilter.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/PointsFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/PointsFilter.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/PoissonDiskSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/PoissonDiskSampler.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/PoissonDiskSampler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/PoissonDiskSampler.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/RandomSamplers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/RandomSamplers.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/RandomSamplers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/RandomSamplers.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/ShuffleBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/ShuffleBag.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/ShuffleBag.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/ShuffleBag.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/Util.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/Util.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Source/Misc/Util.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Aletter.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Aletter.mat -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Aletter.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Aletter.mat.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Aletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Aletter.png -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Aletter.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Aletter.png.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/DistanceMap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/DistanceMap.mat -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/DistanceMap.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/DistanceMap.mat.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/DistanceMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/DistanceMap.png -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/DistanceMap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/DistanceMap.png.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Point.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Point.mat -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Point.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Point.mat.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/SpawnMap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/SpawnMap.mat -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/SpawnMap.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/SpawnMap.mat.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/SpawnMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/SpawnMap.png -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/SpawnMap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/SpawnMap.png.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Vector2Array_LetterA_1000pts.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Vector2Array_LetterA_1000pts.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Vector2Array_LetterA_1000pts.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/Vector2Array_LetterA_1000pts.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/teapot.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/teapot.FBX -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/teapot.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Content/teapot.FBX.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/2D/Test_ApprLineFit2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/2D/Test_ApprLineFit2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/3D/Test_ApprLineFit3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/3D/Test_ApprLineFit3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/3D/Test_ApprPlaneFit3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Approximation/3D/Test_ApprPlaneFit3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContCreateAAB2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContCreateAAB2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContCreateBox2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContCreateBox2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContCreateCircle2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContCreateCircle2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContPoint2AAB2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContPoint2AAB2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContPoint2Box2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContPoint2Box2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContPoint2Circle2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContPoint2Circle2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContPoint2Polygon2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/2D/Test_ContPoint2Polygon2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContCreateAAB3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContCreateAAB3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContCreateBox3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContCreateBox3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContCreateSphere3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContCreateSphere3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContPoint3AAB3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContPoint3AAB3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContPoint3Box3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContPoint3Box3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContPoint3Sphere3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Containment/3D/Test_ContPoint3Sphere3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_CatmullRom3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_CatmullRom3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_CatmullRom3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_CatmullRom3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_CubicSpline3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_CubicSpline3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_CubicSpline3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_CubicSpline3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_FollowSpline.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_FollowSpline.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_FollowSpline.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_FollowSpline.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_SplineInstance.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_SplineInstance.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_SplineInstance.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Curves/Test_SplineInstance.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Line2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Line2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Line2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Line2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Ray2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Ray2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Ray2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Ray2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Segment2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistLine2Segment2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2AAB2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2AAB2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2AAB2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2AAB2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Box2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Box2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Box2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Box2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Circle2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Circle2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Line2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Line2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Line2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Line2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Ray2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Ray2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Ray2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Ray2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Segment2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Segment2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Triangle2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistPoint2Triangle2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistRay2Ray2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistRay2Ray2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistRay2Ray2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistRay2Ray2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistRay2Segment2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistRay2Segment2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistRay2Segment2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/2D/Test_DistRay2Segment2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Box3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Box3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Box3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Box3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Line3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Line3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Line3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Line3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Ray3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Ray3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Ray3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Ray3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Segment3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistLine3Segment3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3AAB3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3AAB3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3AAB3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3AAB3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Box3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Box3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Box3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Box3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Circle3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Circle3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Line3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Line3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Plane3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Plane3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Ray3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Ray3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Ray3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Ray3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Segment3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Segment3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Sphere3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistPoint3Sphere3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistRay3Ray3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistRay3Ray3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistRay3Ray3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistRay3Ray3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistRay3Segment3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistRay3Segment3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistSegment3Box3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Distance/3D/Test_DistSegment3Box3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/GeometricAlgorithms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/GeometricAlgorithms.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/GeometricAlgorithms/Test_ConvexHull2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/GeometricAlgorithms/Test_ConvexHull2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/GeometricAlgorithms/Test_ConvexHull3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/GeometricAlgorithms/Test_ConvexHull3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrAAB2AAB2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrAAB2AAB2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrAAB2Circle2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrAAB2Circle2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrBox2Box2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrBox2Box2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrBox2Circle2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrBox2Circle2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrLine2AAB2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrLine2AAB2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrLine2Box2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrLine2Box2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrLine2Line2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrLine2Line2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrLine2Ray2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrLine2Ray2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrRay2AAB2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrRay2AAB2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrRay2Box2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrRay2Box2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrRay2Circle2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrRay2Circle2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrRay2Ray2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/2D/Test_IntrRay2Ray2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrAAB3AAB3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrAAB3AAB3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrAAB3Sphere3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrAAB3Sphere3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrBox3Box3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrBox3Box3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrBox3Sphere3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrBox3Sphere3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrLine3AAB3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrLine3AAB3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrLine3Box3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrLine3Box3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrLine3Plane3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrLine3Plane3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrPlane3AAB3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrPlane3AAB3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrPlane3Box3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrPlane3Box3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3AAB3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3AAB3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3Box3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3Box3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3Circle3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3Circle3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3Plane3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3Plane3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3Sphere3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Intersection/3D/Test_IntrRay3Sphere3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_CylindricalCoords.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_CylindricalCoords.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_CylindricalCoords.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_CylindricalCoords.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Interpolation.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Interpolation.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Interpolation.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Interpolation.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_MathfEx.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_MathfEx.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_MathfEx.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_MathfEx.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Matrix4x4Ex.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Matrix4x4Ex.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Matrix4x4Ex.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Matrix4x4Ex.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_OverlappedStep.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_OverlappedStep.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_OverlappedStep.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_OverlappedStep.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_PoissonDiskSampler.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_PoissonDiskSampler.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_PoissonDiskSampler.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_PoissonDiskSampler.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_PolarCoords.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_PolarCoords.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_PolarCoords.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_PolarCoords.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random2D.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random2D.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random2D.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random2D.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random3D.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random3D.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random3D.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_Random3D.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomDistribution.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomDistribution.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomDistribution.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomDistribution.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomInTriangle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomInTriangle.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomInTriangle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomInTriangle.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomOnMesh.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomOnMesh.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomOnMesh.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomOnMesh.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomRotation.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomRotation.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomRotation.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_RandomRotation.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_SphericalCoords.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_SphericalCoords.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_SphericalCoords.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Misc/Test_SphericalCoords.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/NumericalAnalysis.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/NumericalAnalysis.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Polygon2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Polygon2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Polygon2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Polygon2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Polygon3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Polygon3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Polygon3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Polygon3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Rectangle3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Rectangle3.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Rectangle3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Rectangle3.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Triangle2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Triangle2.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Triangle2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Objects/Test_Triangle2.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D/Test_Line2Sides.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D/Test_Line2Sides.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D/Test_Line2Sides.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D/Test_Line2Sides.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D/Test_Triangle2Sides.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D/Test_Triangle2Sides.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D/Test_Triangle2Sides.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/2D/Test_Triangle2Sides.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/3D/Test_Plane3Sides.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/3D/Test_Plane3Sides.prefab -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/3D/Test_Plane3Sides.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Prefabs/Query/3D/Test_Plane3Sides.prefab.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/2D/Test_ApprLineFit2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/2D/Test_ApprLineFit2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/2D/Test_ApprLineFit2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/2D/Test_ApprLineFit2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D/Test_ApprLineFit3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D/Test_ApprLineFit3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D/Test_ApprLineFit3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D/Test_ApprLineFit3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D/Test_ApprPlaneFit3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D/Test_ApprPlaneFit3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D/Test_ApprPlaneFit3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Approximation/3D/Test_ApprPlaneFit3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContBox2IncludeBox2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContBox2IncludeBox2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateAAB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateAAB2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateAAB2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateAAB2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateBox2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateBox2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateBox2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateBox2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateCircle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContCreateCircle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2AAB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2AAB2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2AAB2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2AAB2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Box2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Box2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Box2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Box2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Circle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Polygon2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Polygon2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Triangle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/2D/Test_ContPoint2Triangle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContBox3IncludeBox3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContBox3IncludeBox3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateAAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateAAB3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateAAB3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateAAB3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateBox3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateBox3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateBox3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateBox3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateSphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContCreateSphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3AAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3AAB3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3AAB3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3AAB3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3Box3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3Box3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Containment/3D/Test_ContPoint3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_CatmullRom3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_CatmullRom3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_CatmullRom3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_CatmullRom3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_CubicSpline3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_CubicSpline3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_CubicSpline3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_CubicSpline3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_FollowSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_FollowSpline.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_FollowSpline.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Curves/Test_FollowSpline.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Line2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Line2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Line2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Line2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Ray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Ray2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Ray2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Ray2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Segment2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Segment2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Segment2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistLine2Segment2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2AAB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2AAB2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2AAB2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2AAB2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Box2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Box2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Box2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Box2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Circle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Circle2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Circle2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Line2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Line2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Line2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Line2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Ray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Ray2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Ray2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Ray2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Segment2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Segment2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Segment2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Segment2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Triangle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistPoint2Triangle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistRay2Ray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistRay2Ray2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistRay2Ray2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistRay2Ray2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistRay2Segment2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistRay2Segment2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistRay2Segment2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistRay2Segment2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistSegment2Segment2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/2D/Test_DistSegment2Segment2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Box3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Box3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Line3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Line3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Line3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Line3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Ray3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Ray3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Ray3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Ray3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Segment3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Segment3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Segment3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistLine3Segment3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3AAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3AAB3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3AAB3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3AAB3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Box3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Box3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Circle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Circle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Circle3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Circle3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3HollowCircle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3HollowCircle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Line3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Line3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Line3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Line3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Plane3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Plane3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Plane3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Plane3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Ray3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Ray3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Ray3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Ray3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Rectangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Rectangle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Segment3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Segment3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Segment3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Segment3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Sphere3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistPoint3Sphere3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistRay3Ray3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistRay3Ray3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistRay3Ray3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistRay3Ray3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistRay3Segment3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistRay3Segment3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistRay3Segment3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistRay3Segment3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistSegment3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistSegment3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistSegment3Box3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistSegment3Box3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistSegment3Segment3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Distance/3D/Test_DistSegment3Segment3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/GeometricAlgorithms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/GeometricAlgorithms.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/GeometricAlgorithms/Test_ConcaveHull2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/GeometricAlgorithms/Test_ConcaveHull2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/GeometricAlgorithms/Test_ConvexHull2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/GeometricAlgorithms/Test_ConvexHull2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/GeometricAlgorithms/Test_ConvexHull3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/GeometricAlgorithms/Test_ConvexHull3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrAAB2AAB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrAAB2AAB2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrAAB2AAB2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrAAB2AAB2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrAAB2Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrAAB2Circle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrBox2Box2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrBox2Box2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrBox2Box2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrBox2Box2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrBox2Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrBox2Circle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrCircle2Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrCircle2Circle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2AAB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2AAB2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2AAB2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2AAB2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Box2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Box2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Box2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Box2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Circle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Line2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Line2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Line2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Line2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Ray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Ray2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Ray2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Ray2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Segment2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Segment2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Triangle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrLine2Triangle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2AAB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2AAB2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2AAB2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2AAB2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Box2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Box2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Box2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Box2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Circle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Polygon2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Polygon2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Ray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Ray2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Ray2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Ray2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Segment2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Segment2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Triangle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrRay2Triangle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrSegment2AAB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrSegment2AAB2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrSegment2Box2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrSegment2Box2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrSegment2Circle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/2D/Test_IntrSegment2Circle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrAAB3AAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrAAB3AAB3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrAAB3AAB3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrAAB3AAB3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrAAB3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrAAB3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrBox3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrBox3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrBox3Box3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrBox3Box3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrBox3Capsule3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrBox3Capsule3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrBox3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrBox3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3AAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3AAB3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3AAB3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3AAB3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Box3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Box3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Circle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Circle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Plane3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Plane3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Polygon3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Polygon3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Rectangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Rectangle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Triangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrLine3Triangle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3AAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3AAB3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3AAB3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3AAB3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Box3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Box3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Plane3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Plane3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Triangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrPlane3Triangle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3AAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3AAB3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3AAB3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3AAB3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Box3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Box3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Circle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Circle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Plane3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Plane3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Plane3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Plane3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Polygon3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Polygon3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Rectangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Rectangle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Triangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrRay3Triangle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3AAB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3AAB3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3Box3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3Box3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3Circle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3Circle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3Plane3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3Plane3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSegment3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSphere3Sphere3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Intersection/3D/Test_IntrSphere3Sphere3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_CylindricalCoords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_CylindricalCoords.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_CylindricalCoords.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_CylindricalCoords.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Interpolation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Interpolation.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Interpolation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Interpolation.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_MathfEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_MathfEx.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_MathfEx.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_MathfEx.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Matrix4x4Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Matrix4x4Ex.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Matrix4x4Ex.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Matrix4x4Ex.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_OverlappedStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_OverlappedStep.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_OverlappedStep.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_OverlappedStep.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_PoissonDiskSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_PoissonDiskSampler.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_PoissonDiskSampler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_PoissonDiskSampler.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_PolarCoords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_PolarCoords.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_PolarCoords.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_PolarCoords.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random2D.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random2D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random2D.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random3D.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Random3D.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomDistribution.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomDistribution.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomDistribution.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomInTriangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomInTriangle.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomInTriangle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomInTriangle.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomOnMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomOnMesh.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomOnMesh.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomOnMesh.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomRotation.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomRotation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_RandomRotation.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_SphericalCoords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_SphericalCoords.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_SphericalCoords.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_SphericalCoords.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Vector2Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Vector2Array.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Vector2Array.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Vector2Array.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Vector3Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Vector3Array.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Vector3Array.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Misc/Test_Vector3Array.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/NumericalAnalysis.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/NumericalAnalysis.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Polygon2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Polygon2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Polygon2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Polygon2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Polygon3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Polygon3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Polygon3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Polygon3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Rectangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Rectangle3.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Rectangle3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Rectangle3.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Triangle2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Triangle2.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Triangle2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Objects/Test_Triangle2.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D/Test_Line2Sides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D/Test_Line2Sides.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D/Test_Line2Sides.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D/Test_Line2Sides.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D/Test_Triangle2Sides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D/Test_Triangle2Sides.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D/Test_Triangle2Sides.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/2D/Test_Triangle2Sides.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/3D.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/3D/Test_Plane3Sides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/3D/Test_Plane3Sides.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/3D/Test_Plane3Sides.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Query/3D/Test_Plane3Sides.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Test_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Test_Base.cs -------------------------------------------------------------------------------- /MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Test_Base.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/Assets/MathLibraryForUnity/Tests/Scripts/Test_Base.cs.meta -------------------------------------------------------------------------------- /MathLibraryForUnity/MathLibraryForUnity.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/MathLibraryForUnity.Editor.csproj -------------------------------------------------------------------------------- /MathLibraryForUnity/MathLibraryForUnity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/MathLibraryForUnity.csproj -------------------------------------------------------------------------------- /MathLibraryForUnity/MathLibraryForUnity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/MathLibraryForUnity.sln -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.2f1 2 | -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /MathLibraryForUnity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/MathLibraryForUnity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihaiucom/learn.MathLibraryForUnity/HEAD/README.md --------------------------------------------------------------------------------