2024-02-14 21:36:58 -08:00
|
|
|
#ifndef BENDDUCTION_H
|
|
|
|
#define BENDDUCTION_H
|
|
|
|
|
|
|
|
class BendDeduction {
|
|
|
|
private:
|
|
|
|
double bendAngleRadians; // Bend angle in radians
|
|
|
|
double insideRadius; // Inside radius of the bend
|
|
|
|
double materialThickness; // Thickness of the material
|
|
|
|
double kFactor; // K-factor
|
|
|
|
|
|
|
|
public:
|
2024-07-26 21:42:13 -07:00
|
|
|
BendDeduction(double bendAngleDegrees, double radius, double thickness, double k);
|
2024-02-14 21:36:58 -08:00
|
|
|
double calculateBendDeduction();
|
|
|
|
};
|
|
|
|
|
2024-07-26 21:42:13 -07:00
|
|
|
#endif
|