Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/CalculatedCharacteristics/Functions/OprFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,8 @@ public static IEnumerable<MathDependencyInformation> Pt_Sym_DependentCharacteris
/// <param name="values2">Measured values for point2 [XYZ]</param>
/// <param name="nominalValues2">Nominal values for point2 [XYZ]</param>
/// <returns>The calculated distance or <code>null</code> if the distance could not be calculated.</returns>
private static double? Calc_Pt_Dist( string direction, double?[] values1, double?[] nominalValues1, double?[] values2, double?[] nominalValues2 )
// ReSharper disable once MemberCanBePrivate.Global
public static double? Calc_Pt_Dist( string direction, double?[] values1, double?[] nominalValues1, double?[] values2, double?[] nominalValues2 )
{
ValidateForThreePointVector( values1, nameof( values1 ) );
ValidateForThreePointVector( values2, nameof( values2 ) );
Expand Down Expand Up @@ -832,7 +833,8 @@ public static IEnumerable<MathDependencyInformation> Pt_Worst_Target_DependentCh
/// <param name="valuesP1">Values for the first line point [XYZ]</param>
/// <param name="valuesP2">Values for the second line point [XYZ]</param>
/// <returns>The calculated distance or <code>null</code> if the distance could not be calculated.</returns>
private static double? Calc_Pt_Dist_Pt_2Pt( string direction, double[] valuesP, double[] valuesP1, double[] valuesP2 )
// ReSharper disable once MemberCanBePrivate.Global
public static double? Calc_Pt_Dist_Pt_2Pt( string direction, double[] valuesP, double[] valuesP1, double[] valuesP2 )
{
ValidateForThreePointVector( valuesP, nameof( valuesP ) );
ValidateForThreePointVector( valuesP1, nameof( valuesP1 ) );
Expand Down Expand Up @@ -981,7 +983,8 @@ public static IEnumerable<MathDependencyInformation> Pt_Dist_Pt_2Pt_DependentCha
/// <param name="valuesP2">Values for the second plane point [XYZ]</param>
/// <param name="valuesP3">Values for the third plane point [XYZ]</param>
/// <returns>The calculated distance or <code>null</code> if the distance could not be calculated.</returns>
private static double? Calc_Pt_Dist_Pt_3Pt( string direction, double[] valuesP, double[] valuesP1, double[] valuesP2, double[] valuesP3 )
// ReSharper disable once MemberCanBePrivate.Global
public static double? Calc_Pt_Dist_Pt_3Pt( string direction, double[] valuesP, double[] valuesP1, double[] valuesP2, double[] valuesP3 )
{
ValidateForThreePointVector( valuesP, nameof( valuesP ) );
ValidateForThreePointVector( valuesP1, nameof( valuesP1 ) );
Expand Down
Loading