#include <quadratc.h>
List of all members.
Public Attributes |
double | a |
float | b |
float | c |
Detailed Description
Definition at line 25 of file quadratc.h.
Constructor & Destructor Documentation
QUAD_COEFFS::QUAD_COEFFS |
( |
| ) |
|
|
inline |
QUAD_COEFFS::QUAD_COEFFS |
( |
double |
xsq, |
|
|
float |
x, |
|
|
float |
constant |
|
) |
| |
|
inline |
Member Function Documentation
void QUAD_COEFFS::move |
( |
ICOORD |
vec | ) |
|
|
inline |
Definition at line 44 of file quadratc.h.
{
c = (float) (
c -
b * p +
a * p * p + q);
b = (float) (
b - 2 *
a * p);
}
float QUAD_COEFFS::y |
( |
float |
x | ) |
const |
|
inline |
Definition at line 39 of file quadratc.h.
{
return (
float) ((
a * x +
b) * x +
c);
}
Member Data Documentation
The documentation for this class was generated from the following file: