BendCalc/include/BendDeduction.h

16 lines
442 B
C
Raw Normal View History

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:
BendDeduction(double angleDegrees, double radius, double thickness, double k);
double calculateBendDeduction();
};
#endif