diff --git a/src/CalculatedCharacteristics/Functions/OprFunctions.cs b/src/CalculatedCharacteristics/Functions/OprFunctions.cs index 054ba2e..d49b67f 100644 --- a/src/CalculatedCharacteristics/Functions/OprFunctions.cs +++ b/src/CalculatedCharacteristics/Functions/OprFunctions.cs @@ -364,7 +364,8 @@ public static IEnumerable Pt_Sym_DependentCharacteris /// Measured values for point2 [XYZ] /// Nominal values for point2 [XYZ] /// The calculated distance or null if the distance could not be calculated. - 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 ) ); @@ -832,7 +833,8 @@ public static IEnumerable Pt_Worst_Target_DependentCh /// Values for the first line point [XYZ] /// Values for the second line point [XYZ] /// The calculated distance or null if the distance could not be calculated. - 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 ) ); @@ -981,7 +983,8 @@ public static IEnumerable Pt_Dist_Pt_2Pt_DependentCha /// Values for the second plane point [XYZ] /// Values for the third plane point [XYZ] /// The calculated distance or null if the distance could not be calculated. - 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 ) );