16 lines
184 B
C++
16 lines
184 B
C++
#pragma once
|
|
|
|
#include "Math.h"
|
|
|
|
namespace MbD {
|
|
class Numeric : public Math
|
|
{
|
|
//
|
|
public:
|
|
static double arcTan0to2piYoverX(double y, double x);
|
|
|
|
|
|
};
|
|
}
|
|
|