cgv
Loading...
Searching...
No Matches
solve_polynom.h
1
#pragma once
2
3
#include "lib_begin.h"
4
5
namespace
cgv
{
6
namespace
math {
7
8
extern
CGV_API
int
solve_linear(
double
c[2],
double
s[1]);
10
extern
CGV_API
int
solve_quadric(
double
c[3],
double
s[2],
bool
replicate_multiple_solutions =
false
);
12
extern
CGV_API
int
solve_cubic(
double
c[4],
double
s[3],
bool
replicate_multiple_solutions =
false
);
14
extern
CGV_API
int
solve_quartic(
double
c[5],
double
s[4]);
15
16
}
17
}
18
19
#include <cgv/config/lib_end.h>
cgv
the cgv namespace
Definition
print.h:11
cgv
math
solve_polynom.h
Generated by
1.9.8