c++ - How can I create a plugin to input math formulas in Notepad++? -
i able input math formula in notepad++.
i'm trying close microsoft equation (but simpler)
does have ideas on how so?
update 1:
i did more research , 1 solution write math editor instead... have no idea or how start, can give me guidance ?? write in c++ tutorial on how write math editor in c++ great
if mean want equations quick access within code don't have consistently type them, i'm pretty sure there no way import notepad++. konrad said, plain text editor.
if intention reusable equations, write own header (such equations.h). instance, want make reusable quadratic equation yourself, make header file program:
static double quadratic(double a, double b, double c)
{
double x; x = (-b + sqrt(pow(b, 2) - (4*a*c))) / (2*a) ;
return x ;
}
and long put header file in program directory , make sure #include "equations.h", call equations make in header.
Comments
Post a Comment