├── .gitignore ├── CONTRIBUTING.md ├── Karamba3D_tests.sln ├── KarambaCommon_tests ├── .editorconfig ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── Algorithms │ ├── Buckling_tests.cs │ ├── CalculationFlow_tests.cs │ ├── DeformThII_tests.cs │ ├── Deform_tests.cs │ ├── Eigenmodes_tests.cs │ ├── NaturalVibes_tests.cs │ ├── OptiCroSec_tests.cs │ └── OptiReinf_tests.cs ├── App.config ├── CrossSections │ ├── ChangeShellCrossSection.cs │ ├── CroSecProperties.cs │ ├── CroSecValues.cs │ └── DisassembleCroSec.cs ├── Elements │ ├── DisassembleElement_tests.cs │ ├── ElementCreation_tests.cs │ ├── IdentifyBuilderElement_tests.cs │ ├── LocalCoordinateSystems_tests.cs │ ├── ModelElementStraightLineTests.cs │ ├── ModelElementStraightLineTestsWithExceptions.cs │ ├── Shell_tests.cs │ ├── State1DTests.cs │ └── orientateElement_tests.cs ├── Exporters │ ├── DSTV_Exporter_tests.cs │ └── SAF_Exporter_tests.cs ├── FebTests │ └── AABBTreeTests.cs ├── Geometry │ ├── InfiniteLine_Tests.cs │ ├── LineLineIntersection_Tests.cs │ ├── Mesh3_tests.cs │ ├── PolyLine3_tests.cs │ └── Vector3_tests.cs ├── Helpers │ ├── BeamFactory.cs │ ├── Helper.cs │ ├── MeshFactory.cs │ ├── SwigHelper.cs │ └── TestableBeamProperties.cs ├── Joints │ ├── BeamJoint_tests.cs │ └── LineJoint_tests.cs ├── KarambaCommon_tests.csproj ├── KarambaCommon_tests.sln ├── Loads │ ├── Beam │ │ ├── Concentrated │ │ │ ├── ConcentratedLoad_Tests.cs │ │ │ └── GapLoad_Tests.cs │ │ ├── Distributed │ │ │ ├── ConstantLoads_Tests.cs │ │ │ └── DistributedLoad_Tests.cs │ │ └── LoadTypesEnum.cs │ ├── MeshLoad_tests.cs │ └── MultipleLoadcases.cs ├── LoadsCombination │ ├── Combination │ │ ├── LoadCaseCombinator_tests.cs │ │ ├── LoadCaseIndexer_tests.cs │ │ ├── LoadCaseOptions_tests.cs │ │ ├── Loads_tests.cs │ │ ├── RulesExpansion_tests.cs │ │ └── SelectiveCalculation_tests.cs │ └── Selection │ │ ├── CantileverLoadCaseCombinationResults_tests.cs │ │ ├── ShellLoadCaseCombinationResults_tests.cs │ │ └── WallLoadCaseCombinationResults_tests.cs ├── Materials │ └── Materials_tests.cs ├── Mesher │ ├── MeshHoleRefine.cs │ ├── MeshHoles.cs │ ├── MeshRefine.cs │ ├── MeshRequireVertex.cs │ ├── MeshSquare.cs │ ├── MeshSurface.cs │ └── MeshSurfaceStatic.cs ├── Models │ ├── DeformedModel_tests.cs │ ├── Disassemble_tests.cs │ ├── FindSupportNodes_tests.cs │ ├── ModelDisplay_Tests.cs │ ├── ModifyModel_tests.cs │ └── QueryElements_tests.cs ├── Program.cs ├── Resources │ ├── CrossSectionValues.csv │ ├── MaterialProperties.csv │ └── karamba.ini ├── Results │ ├── NodeForces_tests.cs │ ├── ReinforcementStress_tests.cs │ └── ShellSections │ │ ├── MarchingAlgorithmRetrieverTestOnOpenMeshes.cs │ │ ├── MarchingAlgorithmRetrieverTestOnTMesh.cs │ │ ├── MarchingAlgorithmRetrieverTestsOnNonConvexMesh.cs │ │ ├── MarchingAlgorithmRetrieverTestsOnNonPlanarMesh.cs │ │ ├── MarchingAlgorithmTestsOnClosedMesh.cs │ │ ├── ResultsRetrieversTest.cs │ │ ├── ShellSectionAlgorithmsUtilitiesTests.cs │ │ ├── ShellSectionLocalAxesRendererTest.cs │ │ ├── ShellSectionMeshRendererTests.cs │ │ ├── ShellSectionNumberRendererTests.cs │ │ └── ShellSectionTestsUtilities.cs ├── Serialization │ ├── CroSecSerialization.cs │ ├── Json.cs │ └── ModelSerialization.cs ├── Utilities │ ├── ModelFactory.cs │ ├── StringUtil_tests.cs │ └── dyn_tests.cs ├── UtilitiesTests │ ├── ExtensionMethods │ │ └── UtilsExtensionsTests.cs │ ├── Interpreters │ │ └── LoadCombiParser_tests.cs │ ├── Mappings │ │ └── MappingDisassembleAssemble.cs │ ├── RandomTests.cs │ └── UnitsConversion │ │ ├── Cantilever_tests.cs │ │ ├── InputGeometryUnits_tests.cs │ │ ├── Mass_tests.cs │ │ ├── ReadCrossSectionFromTable_tests.cs │ │ └── SingleMass_tests.cs └── global.json ├── LICENSE ├── README.md └── banner.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Karamba3D_tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/Karamba3D_tests.sln -------------------------------------------------------------------------------- /KarambaCommon_tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/.editorconfig -------------------------------------------------------------------------------- /KarambaCommon_tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/.vscode/launch.json -------------------------------------------------------------------------------- /KarambaCommon_tests/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/.vscode/settings.json -------------------------------------------------------------------------------- /KarambaCommon_tests/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/.vscode/tasks.json -------------------------------------------------------------------------------- /KarambaCommon_tests/Algorithms/Buckling_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Algorithms/Buckling_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Algorithms/CalculationFlow_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Algorithms/CalculationFlow_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Algorithms/DeformThII_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Algorithms/DeformThII_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Algorithms/Deform_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Algorithms/Deform_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Algorithms/Eigenmodes_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Algorithms/Eigenmodes_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Algorithms/NaturalVibes_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Algorithms/NaturalVibes_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Algorithms/OptiCroSec_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Algorithms/OptiCroSec_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Algorithms/OptiReinf_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Algorithms/OptiReinf_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/App.config -------------------------------------------------------------------------------- /KarambaCommon_tests/CrossSections/ChangeShellCrossSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/CrossSections/ChangeShellCrossSection.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/CrossSections/CroSecProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/CrossSections/CroSecProperties.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/CrossSections/CroSecValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/CrossSections/CroSecValues.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/CrossSections/DisassembleCroSec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/CrossSections/DisassembleCroSec.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/DisassembleElement_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/DisassembleElement_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/ElementCreation_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/ElementCreation_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/IdentifyBuilderElement_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/IdentifyBuilderElement_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/LocalCoordinateSystems_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/LocalCoordinateSystems_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/ModelElementStraightLineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/ModelElementStraightLineTests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/ModelElementStraightLineTestsWithExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/ModelElementStraightLineTestsWithExceptions.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/Shell_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/Shell_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/State1DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/State1DTests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Elements/orientateElement_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Elements/orientateElement_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Exporters/DSTV_Exporter_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Exporters/DSTV_Exporter_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Exporters/SAF_Exporter_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Exporters/SAF_Exporter_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/FebTests/AABBTreeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/FebTests/AABBTreeTests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Geometry/InfiniteLine_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Geometry/InfiniteLine_Tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Geometry/LineLineIntersection_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Geometry/LineLineIntersection_Tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Geometry/Mesh3_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Geometry/Mesh3_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Geometry/PolyLine3_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Geometry/PolyLine3_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Geometry/Vector3_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Geometry/Vector3_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Helpers/BeamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Helpers/BeamFactory.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Helpers/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Helpers/Helper.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Helpers/MeshFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Helpers/MeshFactory.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Helpers/SwigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Helpers/SwigHelper.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Helpers/TestableBeamProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Helpers/TestableBeamProperties.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Joints/BeamJoint_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Joints/BeamJoint_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Joints/LineJoint_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Joints/LineJoint_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/KarambaCommon_tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/KarambaCommon_tests.csproj -------------------------------------------------------------------------------- /KarambaCommon_tests/KarambaCommon_tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/KarambaCommon_tests.sln -------------------------------------------------------------------------------- /KarambaCommon_tests/Loads/Beam/Concentrated/ConcentratedLoad_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Loads/Beam/Concentrated/ConcentratedLoad_Tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Loads/Beam/Concentrated/GapLoad_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Loads/Beam/Concentrated/GapLoad_Tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Loads/Beam/Distributed/ConstantLoads_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Loads/Beam/Distributed/ConstantLoads_Tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Loads/Beam/Distributed/DistributedLoad_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Loads/Beam/Distributed/DistributedLoad_Tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Loads/Beam/LoadTypesEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Loads/Beam/LoadTypesEnum.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Loads/MeshLoad_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Loads/MeshLoad_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Loads/MultipleLoadcases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Loads/MultipleLoadcases.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Combination/LoadCaseCombinator_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Combination/LoadCaseCombinator_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Combination/LoadCaseIndexer_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Combination/LoadCaseIndexer_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Combination/LoadCaseOptions_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Combination/LoadCaseOptions_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Combination/Loads_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Combination/Loads_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Combination/RulesExpansion_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Combination/RulesExpansion_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Combination/SelectiveCalculation_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Combination/SelectiveCalculation_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Selection/CantileverLoadCaseCombinationResults_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Selection/CantileverLoadCaseCombinationResults_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Selection/ShellLoadCaseCombinationResults_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Selection/ShellLoadCaseCombinationResults_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/LoadsCombination/Selection/WallLoadCaseCombinationResults_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/LoadsCombination/Selection/WallLoadCaseCombinationResults_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Materials/Materials_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Materials/Materials_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Mesher/MeshHoleRefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Mesher/MeshHoleRefine.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Mesher/MeshHoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Mesher/MeshHoles.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Mesher/MeshRefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Mesher/MeshRefine.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Mesher/MeshRequireVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Mesher/MeshRequireVertex.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Mesher/MeshSquare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Mesher/MeshSquare.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Mesher/MeshSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Mesher/MeshSurface.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Mesher/MeshSurfaceStatic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Mesher/MeshSurfaceStatic.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Models/DeformedModel_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Models/DeformedModel_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Models/Disassemble_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Models/Disassemble_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Models/FindSupportNodes_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Models/FindSupportNodes_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Models/ModelDisplay_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Models/ModelDisplay_Tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Models/ModifyModel_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Models/ModifyModel_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Models/QueryElements_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Models/QueryElements_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Program.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Resources/CrossSectionValues.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Resources/CrossSectionValues.csv -------------------------------------------------------------------------------- /KarambaCommon_tests/Resources/MaterialProperties.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Resources/MaterialProperties.csv -------------------------------------------------------------------------------- /KarambaCommon_tests/Resources/karamba.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Resources/karamba.ini -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/NodeForces_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/NodeForces_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ReinforcementStress_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ReinforcementStress_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmRetrieverTestOnOpenMeshes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmRetrieverTestOnOpenMeshes.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmRetrieverTestOnTMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmRetrieverTestOnTMesh.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmRetrieverTestsOnNonConvexMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmRetrieverTestsOnNonConvexMesh.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmRetrieverTestsOnNonPlanarMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmRetrieverTestsOnNonPlanarMesh.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmTestsOnClosedMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/MarchingAlgorithmTestsOnClosedMesh.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/ResultsRetrieversTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/ResultsRetrieversTest.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/ShellSectionAlgorithmsUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/ShellSectionAlgorithmsUtilitiesTests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/ShellSectionLocalAxesRendererTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/ShellSectionLocalAxesRendererTest.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/ShellSectionMeshRendererTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/ShellSectionMeshRendererTests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/ShellSectionNumberRendererTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/ShellSectionNumberRendererTests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Results/ShellSections/ShellSectionTestsUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Results/ShellSections/ShellSectionTestsUtilities.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Serialization/CroSecSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Serialization/CroSecSerialization.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Serialization/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Serialization/Json.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Serialization/ModelSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Serialization/ModelSerialization.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Utilities/ModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Utilities/ModelFactory.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Utilities/StringUtil_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Utilities/StringUtil_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/Utilities/dyn_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/Utilities/dyn_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/ExtensionMethods/UtilsExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/ExtensionMethods/UtilsExtensionsTests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/Interpreters/LoadCombiParser_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/Interpreters/LoadCombiParser_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/Mappings/MappingDisassembleAssemble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/Mappings/MappingDisassembleAssemble.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/RandomTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/RandomTests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/UnitsConversion/Cantilever_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/UnitsConversion/Cantilever_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/UnitsConversion/InputGeometryUnits_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/UnitsConversion/InputGeometryUnits_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/UnitsConversion/Mass_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/UnitsConversion/Mass_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/UnitsConversion/ReadCrossSectionFromTable_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/UnitsConversion/ReadCrossSectionFromTable_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/UtilitiesTests/UnitsConversion/SingleMass_tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/KarambaCommon_tests/UtilitiesTests/UnitsConversion/SingleMass_tests.cs -------------------------------------------------------------------------------- /KarambaCommon_tests/global.json: -------------------------------------------------------------------------------- 1 | { "sdk": { "version": "8.0.300" } } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/README.md -------------------------------------------------------------------------------- /banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karamba3d/K3D_tests/HEAD/banner.jpg --------------------------------------------------------------------------------