├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .paket └── Paket.Restore.targets ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE.md ├── MathNet.Spatial.Signed.sln ├── MathNet.Spatial.sln ├── MathNet.Spatial.sln.DotSettings ├── MathNet.SpatialMinimal.sln ├── NuGet.config ├── README.md ├── RELEASENOTES.md ├── Vagrantfile ├── appveyor.yml ├── docs ├── content │ ├── Build.md │ └── index.md ├── files │ └── img │ │ └── logo.png └── tools │ ├── build-docs.fsx │ ├── paket.references │ └── templates │ └── template.cshtml ├── global.json ├── paket.dependencies ├── paket.lock ├── restore.cmd ├── restore.sh ├── src ├── .gitignore ├── Directory.Build.props ├── MathNet.Spatial.snk ├── Spatial.Analyzers │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ ├── Spatial.Analyzers.csproj │ ├── Spatial.Analyzers.ruleset │ └── paket.references ├── Spatial.Benchmarks │ ├── CodeGen.cs │ ├── PlaneBenchmarks.cs │ ├── Point2DBenchmarks.cs │ ├── Point3DBenchmarks.cs │ ├── Polygon2DBenchmarks.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── MemoryDiagnoserConfig.cs │ ├── Ray3DBenchmarks.cs │ ├── Spatial.Benchmarks.csproj │ ├── SpatialConfig.cs │ ├── UnitVector3DBenchmarks.cs │ ├── Vector2DBenchmarks.cs │ ├── Vector3DBenchmarks.cs │ └── paket.references ├── Spatial.CodeFixes │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ ├── Spatial.CodeFixes.csproj │ ├── Spatial.CodeFixes.ruleset │ ├── UpdateCodeFix.cs │ └── paket.references ├── Spatial.Roslyn.Tests │ ├── AngleTests.cs │ ├── ApiCompare │ │ ├── ApiCompareTest.cs │ │ ├── EntityChange.cs │ │ ├── ReflectionExtensions.cs │ │ └── Reflector.cs │ ├── FixCircle3DTests.cs │ ├── FixLine2DTests.cs │ ├── FixLine3DTests.cs │ ├── FixPoint3DTests.cs │ ├── FixPolygon2DTests.cs │ ├── FixRay3DTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ ├── Spatial.Roslyn.Tests.csproj │ ├── Spatial.Roslyn.Tests.ruleset │ ├── UnitVector3dTests.cs │ ├── Vector3DTests.cs │ └── paket.references ├── Spatial.Tests │ ├── Euclidean │ │ ├── Circle2DTests.cs │ │ ├── Circle3DTests.cs │ │ ├── CoordinateSystemTest.cs │ │ ├── Line2DTests.cs │ │ ├── Line3DTests.cs │ │ ├── LineSegment2DTests.cs │ │ ├── LineSegment3DTests.cs │ │ ├── PlaneTest.cs │ │ ├── Point2DTests.cs │ │ ├── Point3DTests.cs │ │ ├── PolyLine2DTests.cs │ │ ├── PolyLine3DTests.cs │ │ ├── Polygon2DTests.cs │ │ ├── QuaternionTests.cs │ │ ├── Ray3DTests.cs │ │ ├── UnitVector3DTests.cs │ │ ├── Vector2DTests.cs │ │ └── Vector3DTests.cs │ ├── Helpers │ │ ├── AssertGeometry.cs │ │ ├── AssertXml.cs │ │ └── AssertXmlTests.cs │ ├── ParserTests.cs │ ├── Program.cs │ ├── Serialization │ │ ├── BinaryFormatterTests.cs │ │ ├── DataContractTests.cs │ │ ├── JsonTests.cs │ │ ├── ProtobufnetTests.cs │ │ └── XmlSerializerTests.cs │ ├── Spatial.Tests.csproj │ ├── Spatial.Tests.csproj.DotSettings │ ├── Units │ │ └── AngleTests.cs │ └── paket.references ├── Spatial │ ├── Euclidean │ │ ├── Circle2D.cs │ │ ├── Circle3D.cs │ │ ├── CoordinateSystem.cs │ │ ├── EulerAngles.cs │ │ ├── Line2D.cs │ │ ├── Line3D.cs │ │ ├── LineSegment2D.cs │ │ ├── LineSegment3D.cs │ │ ├── Matrix2D.cs │ │ ├── Matrix3D.cs │ │ ├── Plane.cs │ │ ├── Point2D.cs │ │ ├── Point3D.cs │ │ ├── PolyLine2D.cs │ │ ├── PolyLine3D.cs │ │ ├── Polygon2D.cs │ │ ├── Quaternion.cs │ │ ├── Ray3D.cs │ │ ├── UnitVector3D.cs │ │ ├── Vector2D.cs │ │ └── Vector3D.cs │ ├── Internals │ │ ├── AvlTreeSet │ │ │ ├── AvlNode.cs │ │ │ ├── AvlNodeItemEnumerator.cs │ │ │ └── AvlTreeSet.cs │ │ ├── ConvexHull │ │ │ ├── ConvexHull.cs │ │ │ ├── MutablePoint.cs │ │ │ ├── QComparer.cs │ │ │ ├── Quadrant.cs │ │ │ ├── QuadrantSpecific1.cs │ │ │ ├── QuadrantSpecific2.cs │ │ │ ├── QuadrantSpecific3.cs │ │ │ └── QuadrantSpecific4.cs │ │ ├── HashCode.cs │ │ ├── ImmutableList.cs │ │ ├── ImmutableList{T}.cs │ │ ├── Text.cs │ │ ├── XmlReaderExt.cs │ │ └── XmlWriterExt.cs │ ├── Obsolete │ │ ├── Parser.cs │ │ └── XmlExt.cs │ ├── Projective │ │ ├── Matrix3DHomogeneous.cs │ │ ├── Point3DHomogeneous.cs │ │ └── Vector3DHomogeneous.cs │ ├── Spatial.Signed.csproj │ ├── Spatial.Signed.csproj.paket.references │ ├── Spatial.csproj │ ├── Spatial.csproj.DotSettings │ ├── Spatial.csproj.paket.references │ └── Units │ │ ├── Angle.cs │ │ ├── AngleUnit.cs │ │ ├── Degrees.cs │ │ ├── IAngleUnit.cs │ │ └── Radians.cs └── icon.png ├── tools └── docu │ ├── Spark.dll │ ├── docu.exe │ ├── docu.exe.config │ └── templates │ ├── !namespace │ ├── !type.htm.spark │ ├── _comment.spark │ ├── _events.spark │ ├── _example.spark │ ├── _fields.spark │ ├── _methods.spark │ ├── _namespaces.spark │ ├── _properties.spark │ ├── _remarks.spark │ ├── _types.spark │ ├── _value.spark │ └── index.htm.spark │ ├── _footer.spark │ ├── _namespaces.spark │ ├── _types.spark │ ├── index.htm.spark │ ├── js │ ├── example.js │ ├── jquery-1.3.2.min.js │ ├── jquery.scrollTo-min.js │ └── navigation.js │ └── main.css └── vagrant-bootstrap.sh /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/Paket.Restore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/.paket/Paket.Restore.targets -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MathNet.Spatial.Signed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/MathNet.Spatial.Signed.sln -------------------------------------------------------------------------------- /MathNet.Spatial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/MathNet.Spatial.sln -------------------------------------------------------------------------------- /MathNet.Spatial.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/MathNet.Spatial.sln.DotSettings -------------------------------------------------------------------------------- /MathNet.SpatialMinimal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/MathNet.SpatialMinimal.sln -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/Vagrantfile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/content/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/docs/content/Build.md -------------------------------------------------------------------------------- /docs/content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/docs/content/index.md -------------------------------------------------------------------------------- /docs/files/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/docs/files/img/logo.png -------------------------------------------------------------------------------- /docs/tools/build-docs.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/docs/tools/build-docs.fsx -------------------------------------------------------------------------------- /docs/tools/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/docs/tools/paket.references -------------------------------------------------------------------------------- /docs/tools/templates/template.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/docs/tools/templates/template.cshtml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/global.json -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/paket.lock -------------------------------------------------------------------------------- /restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/restore.cmd -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/restore.sh -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/MathNet.Spatial.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/MathNet.Spatial.snk -------------------------------------------------------------------------------- /src/Spatial.Analyzers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Analyzers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spatial.Analyzers/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Analyzers/Settings.StyleCop -------------------------------------------------------------------------------- /src/Spatial.Analyzers/Spatial.Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Analyzers/Spatial.Analyzers.csproj -------------------------------------------------------------------------------- /src/Spatial.Analyzers/Spatial.Analyzers.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Analyzers/Spatial.Analyzers.ruleset -------------------------------------------------------------------------------- /src/Spatial.Analyzers/paket.references: -------------------------------------------------------------------------------- 1 | Microsoft.CodeAnalysis.CSharp 2 | -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/CodeGen.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/PlaneBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/PlaneBenchmarks.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Point2DBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Point2DBenchmarks.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Point3DBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Point3DBenchmarks.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Polygon2DBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Polygon2DBenchmarks.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Program.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Properties/MemoryDiagnoserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Properties/MemoryDiagnoserConfig.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Ray3DBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Ray3DBenchmarks.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Spatial.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Spatial.Benchmarks.csproj -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/SpatialConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/SpatialConfig.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/UnitVector3DBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/UnitVector3DBenchmarks.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Vector2DBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Vector2DBenchmarks.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/Vector3DBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/Vector3DBenchmarks.cs -------------------------------------------------------------------------------- /src/Spatial.Benchmarks/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Benchmarks/paket.references -------------------------------------------------------------------------------- /src/Spatial.CodeFixes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.CodeFixes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spatial.CodeFixes/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.CodeFixes/Settings.StyleCop -------------------------------------------------------------------------------- /src/Spatial.CodeFixes/Spatial.CodeFixes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.CodeFixes/Spatial.CodeFixes.csproj -------------------------------------------------------------------------------- /src/Spatial.CodeFixes/Spatial.CodeFixes.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.CodeFixes/Spatial.CodeFixes.ruleset -------------------------------------------------------------------------------- /src/Spatial.CodeFixes/UpdateCodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.CodeFixes/UpdateCodeFix.cs -------------------------------------------------------------------------------- /src/Spatial.CodeFixes/paket.references: -------------------------------------------------------------------------------- 1 | Microsoft.CodeAnalysis.CSharp.Workspaces 2 | -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/AngleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/AngleTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/ApiCompare/ApiCompareTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/ApiCompare/ApiCompareTest.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/ApiCompare/EntityChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/ApiCompare/EntityChange.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/ApiCompare/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/ApiCompare/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/ApiCompare/Reflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/ApiCompare/Reflector.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/FixCircle3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/FixCircle3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/FixLine2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/FixLine2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/FixLine3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/FixLine3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/FixPoint3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/FixPoint3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/FixPolygon2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/FixPolygon2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/FixRay3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/FixRay3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/Settings.StyleCop -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/Spatial.Roslyn.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/Spatial.Roslyn.Tests.csproj -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/Spatial.Roslyn.Tests.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/Spatial.Roslyn.Tests.ruleset -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/UnitVector3dTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/UnitVector3dTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/Vector3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Roslyn.Tests/Vector3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Roslyn.Tests/paket.references: -------------------------------------------------------------------------------- 1 | Microsoft.CodeAnalysis.CSharp.Workspaces 2 | NUnit 3 | Gu.Roslyn.Asserts 4 | -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Circle2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Circle2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Circle3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Circle3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/CoordinateSystemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/CoordinateSystemTest.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Line2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Line2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Line3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Line3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/LineSegment2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/LineSegment2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/LineSegment3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/LineSegment3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/PlaneTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/PlaneTest.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Point2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Point2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Point3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Point3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/PolyLine2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/PolyLine2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/PolyLine3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/PolyLine3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Polygon2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Polygon2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/QuaternionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/QuaternionTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Ray3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Ray3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/UnitVector3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/UnitVector3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Vector2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Vector2DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Euclidean/Vector3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Euclidean/Vector3DTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Helpers/AssertGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Helpers/AssertGeometry.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Helpers/AssertXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Helpers/AssertXml.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Helpers/AssertXmlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Helpers/AssertXmlTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/ParserTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Program.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Serialization/BinaryFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Serialization/BinaryFormatterTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Serialization/DataContractTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Serialization/DataContractTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Serialization/JsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Serialization/JsonTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Serialization/ProtobufnetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Serialization/ProtobufnetTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Serialization/XmlSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Serialization/XmlSerializerTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/Spatial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Spatial.Tests.csproj -------------------------------------------------------------------------------- /src/Spatial.Tests/Spatial.Tests.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Spatial.Tests.csproj.DotSettings -------------------------------------------------------------------------------- /src/Spatial.Tests/Units/AngleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/Units/AngleTests.cs -------------------------------------------------------------------------------- /src/Spatial.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial.Tests/paket.references -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Circle2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Circle2D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Circle3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Circle3D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/CoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/CoordinateSystem.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/EulerAngles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/EulerAngles.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Line2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Line2D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Line3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Line3D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/LineSegment2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/LineSegment2D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/LineSegment3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/LineSegment3D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Matrix2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Matrix2D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Matrix3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Matrix3D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Plane.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Point2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Point2D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Point3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Point3D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/PolyLine2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/PolyLine2D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/PolyLine3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/PolyLine3D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Polygon2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Polygon2D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Quaternion.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Ray3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Ray3D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/UnitVector3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/UnitVector3D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Vector2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Vector2D.cs -------------------------------------------------------------------------------- /src/Spatial/Euclidean/Vector3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Euclidean/Vector3D.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/AvlTreeSet/AvlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/AvlTreeSet/AvlNode.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/AvlTreeSet/AvlNodeItemEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/AvlTreeSet/AvlNodeItemEnumerator.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/AvlTreeSet/AvlTreeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/AvlTreeSet/AvlTreeSet.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ConvexHull/ConvexHull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ConvexHull/ConvexHull.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ConvexHull/MutablePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ConvexHull/MutablePoint.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ConvexHull/QComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ConvexHull/QComparer.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ConvexHull/Quadrant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ConvexHull/Quadrant.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ConvexHull/QuadrantSpecific1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ConvexHull/QuadrantSpecific1.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ConvexHull/QuadrantSpecific2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ConvexHull/QuadrantSpecific2.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ConvexHull/QuadrantSpecific3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ConvexHull/QuadrantSpecific3.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ConvexHull/QuadrantSpecific4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ConvexHull/QuadrantSpecific4.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/HashCode.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ImmutableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ImmutableList.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/ImmutableList{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/ImmutableList{T}.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/Text.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/XmlReaderExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/XmlReaderExt.cs -------------------------------------------------------------------------------- /src/Spatial/Internals/XmlWriterExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Internals/XmlWriterExt.cs -------------------------------------------------------------------------------- /src/Spatial/Obsolete/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Obsolete/Parser.cs -------------------------------------------------------------------------------- /src/Spatial/Obsolete/XmlExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Obsolete/XmlExt.cs -------------------------------------------------------------------------------- /src/Spatial/Projective/Matrix3DHomogeneous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Projective/Matrix3DHomogeneous.cs -------------------------------------------------------------------------------- /src/Spatial/Projective/Point3DHomogeneous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Projective/Point3DHomogeneous.cs -------------------------------------------------------------------------------- /src/Spatial/Projective/Vector3DHomogeneous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Projective/Vector3DHomogeneous.cs -------------------------------------------------------------------------------- /src/Spatial/Spatial.Signed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Spatial.Signed.csproj -------------------------------------------------------------------------------- /src/Spatial/Spatial.Signed.csproj.paket.references: -------------------------------------------------------------------------------- 1 | MathNet.Numerics.Signed 2 | System.Diagnostics.Contracts 3 | -------------------------------------------------------------------------------- /src/Spatial/Spatial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Spatial.csproj -------------------------------------------------------------------------------- /src/Spatial/Spatial.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Spatial.csproj.DotSettings -------------------------------------------------------------------------------- /src/Spatial/Spatial.csproj.paket.references: -------------------------------------------------------------------------------- 1 | MathNet.Numerics 2 | System.Diagnostics.Contracts 3 | -------------------------------------------------------------------------------- /src/Spatial/Units/Angle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Units/Angle.cs -------------------------------------------------------------------------------- /src/Spatial/Units/AngleUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Units/AngleUnit.cs -------------------------------------------------------------------------------- /src/Spatial/Units/Degrees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Units/Degrees.cs -------------------------------------------------------------------------------- /src/Spatial/Units/IAngleUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Units/IAngleUnit.cs -------------------------------------------------------------------------------- /src/Spatial/Units/Radians.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/Spatial/Units/Radians.cs -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/src/icon.png -------------------------------------------------------------------------------- /tools/docu/Spark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/Spark.dll -------------------------------------------------------------------------------- /tools/docu/docu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/docu.exe -------------------------------------------------------------------------------- /tools/docu/docu.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/docu.exe.config -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/!type.htm.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/!type.htm.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_comment.spark: -------------------------------------------------------------------------------- 1 | ${Format(content)} -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_events.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_events.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_example.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_example.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_fields.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_fields.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_methods.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_methods.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_namespaces.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_namespaces.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_properties.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_properties.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_remarks.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_remarks.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_types.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_types.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/_value.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/_value.spark -------------------------------------------------------------------------------- /tools/docu/templates/!namespace/index.htm.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/!namespace/index.htm.spark -------------------------------------------------------------------------------- /tools/docu/templates/_footer.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/_footer.spark -------------------------------------------------------------------------------- /tools/docu/templates/_namespaces.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/_namespaces.spark -------------------------------------------------------------------------------- /tools/docu/templates/_types.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/_types.spark -------------------------------------------------------------------------------- /tools/docu/templates/index.htm.spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/index.htm.spark -------------------------------------------------------------------------------- /tools/docu/templates/js/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/js/example.js -------------------------------------------------------------------------------- /tools/docu/templates/js/jquery-1.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/js/jquery-1.3.2.min.js -------------------------------------------------------------------------------- /tools/docu/templates/js/jquery.scrollTo-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/js/jquery.scrollTo-min.js -------------------------------------------------------------------------------- /tools/docu/templates/js/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/js/navigation.js -------------------------------------------------------------------------------- /tools/docu/templates/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/tools/docu/templates/main.css -------------------------------------------------------------------------------- /vagrant-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathnet/mathnet-spatial/HEAD/vagrant-bootstrap.sh --------------------------------------------------------------------------------