#include <MRCMisc/exports.h>
#include <stddef.h>
Go to the source code of this file.
|
| MRC_API MR_BestFitParabolaf * | MR_BestFitParabolaf_DefaultConstruct (void) |
| |
| MRC_API MR_BestFitParabolaf * | MR_BestFitParabolaf_DefaultConstructArray (size_t num_elems) |
| |
| MRC_API const MR_BestFitParabolaf * | MR_BestFitParabolaf_OffsetPtr (const MR_BestFitParabolaf *ptr, ptrdiff_t i) |
| |
| MRC_API MR_BestFitParabolaf * | MR_BestFitParabolaf_OffsetMutablePtr (MR_BestFitParabolaf *ptr, ptrdiff_t i) |
| |
| MRC_API MR_BestFitParabolaf * | MR_BestFitParabolaf_ConstructFromAnother (const MR_BestFitParabolaf *_other) |
| |
| MRC_API void | MR_BestFitParabolaf_Destroy (const MR_BestFitParabolaf *_this) |
| | Destroys a heap-allocated instance of MR_BestFitParabolaf. Does nothing if the pointer is null.
|
| |
| MRC_API void | MR_BestFitParabolaf_DestroyArray (const MR_BestFitParabolaf *_this) |
| | Destroys a heap-allocated array of MR_BestFitParabolaf. Does nothing if the pointer is null.
|
| |
| MRC_API MR_BestFitParabolaf * | MR_BestFitParabolaf_AssignFromAnother (MR_BestFitParabolaf *_this, const MR_BestFitParabolaf *_other) |
| |
| MRC_API void | MR_BestFitParabolaf_addPoint_2 (MR_BestFitParabolaf *_this, float x, float y) |
| |
| MRC_API void | MR_BestFitParabolaf_addPoint_3 (MR_BestFitParabolaf *_this, float x, float y, float weight) |
| |
| MRC_API MR_Parabolaf * | MR_BestFitParabolaf_getBestParabola (const MR_BestFitParabolaf *_this, const float *tol) |
| |
| MRC_API MR_BestFitParabolad * | MR_BestFitParabolad_DefaultConstruct (void) |
| |
| MRC_API MR_BestFitParabolad * | MR_BestFitParabolad_DefaultConstructArray (size_t num_elems) |
| |
| MRC_API const MR_BestFitParabolad * | MR_BestFitParabolad_OffsetPtr (const MR_BestFitParabolad *ptr, ptrdiff_t i) |
| |
| MRC_API MR_BestFitParabolad * | MR_BestFitParabolad_OffsetMutablePtr (MR_BestFitParabolad *ptr, ptrdiff_t i) |
| |
| MRC_API MR_BestFitParabolad * | MR_BestFitParabolad_ConstructFromAnother (const MR_BestFitParabolad *_other) |
| |
| MRC_API void | MR_BestFitParabolad_Destroy (const MR_BestFitParabolad *_this) |
| | Destroys a heap-allocated instance of MR_BestFitParabolad. Does nothing if the pointer is null.
|
| |
| MRC_API void | MR_BestFitParabolad_DestroyArray (const MR_BestFitParabolad *_this) |
| | Destroys a heap-allocated array of MR_BestFitParabolad. Does nothing if the pointer is null.
|
| |
| MRC_API MR_BestFitParabolad * | MR_BestFitParabolad_AssignFromAnother (MR_BestFitParabolad *_this, const MR_BestFitParabolad *_other) |
| |
| MRC_API void | MR_BestFitParabolad_addPoint_2 (MR_BestFitParabolad *_this, double x, double y) |
| |
| MRC_API void | MR_BestFitParabolad_addPoint_3 (MR_BestFitParabolad *_this, double x, double y, double weight) |
| |
| MRC_API MR_Parabolad * | MR_BestFitParabolad_getBestParabola (const MR_BestFitParabolad *_this, const double *tol) |
| |
◆ MR_BestFitParabolad
accumulates a number of (x,y) points to find the best-least-squares parabola approximating them Generated from class MR::BestFitParabolad. Supported MR_PassBy modes: MR_PassBy_DefaultConstruct, MR_PassBy_Copy, MR_PassBy_Move (and MR_PassBy_DefaultArgument and MR_PassBy_NoObject if supported by the callee).
◆ MR_BestFitParabolaf
accumulates a number of (x,y) points to find the best-least-squares parabola approximating them Generated from class MR::BestFitParabolaf. Supported MR_PassBy modes: MR_PassBy_DefaultConstruct, MR_PassBy_Copy, MR_PassBy_Move (and MR_PassBy_DefaultArgument and MR_PassBy_NoObject if supported by the callee).
◆ MR_Parabolad
◆ MR_Parabolaf
◆ MR_BestFitParabolad_addPoint_2()
accumulates one more point for parabola fitting Generated from method MR::BestFitParabolad::addPoint. Parameter _this can not be null. It is a single object.
◆ MR_BestFitParabolad_addPoint_3()
accumulates one more point with given weight for parabola fitting Generated from method MR::BestFitParabolad::addPoint. Parameter _this can not be null. It is a single object.
◆ MR_BestFitParabolad_AssignFromAnother()
Generated from method MR::BestFitParabolad::operator=. Parameter _this can not be null. It is a single object. Parameter _other can not be null. It is a single object. The reference to things referred to by the parameter _other (if any) might be preserved in this object. The returned pointer will never be null. It is non-owning, do NOT destroy it. When this function is called, this object will drop any object references it had previously.
◆ MR_BestFitParabolad_ConstructFromAnother()
Generated from constructor MR::BestFitParabolad::BestFitParabolad. Parameter _other can not be null. It is a single object. The reference to things referred to by the parameter _other (if any) might be preserved in the constructed object. Never returns null. Returns an instance allocated on the heap! Must call MR_BestFitParabolad_Destroy() to free it when you're done using it.
◆ MR_BestFitParabolad_DefaultConstruct()
Constructs an empty (default-constructed) instance. Never returns null. Returns an instance allocated on the heap! Must call MR_BestFitParabolad_Destroy() to free it when you're done using it.
◆ MR_BestFitParabolad_DefaultConstructArray()
◆ MR_BestFitParabolad_Destroy()
Destroys a heap-allocated instance of MR_BestFitParabolad. Does nothing if the pointer is null.
◆ MR_BestFitParabolad_DestroyArray()
Destroys a heap-allocated array of MR_BestFitParabolad. Does nothing if the pointer is null.
◆ MR_BestFitParabolad_getBestParabola()
computes the best approximating parabola from the accumulated points; Generated from method MR::BestFitParabolad::getBestParabola. Parameter _this can not be null. It is a single object. Parameter tol has a default argument: std::numeric_limits<double>::epsilon(), pass a null pointer to use it. Never returns null. Returns an instance allocated on the heap! Must call MR_Parabolad_Destroy() to free it when you're done using it.
◆ MR_BestFitParabolad_OffsetMutablePtr()
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the pointer points to an array element. The reference to the parameter ptr might be preserved in the return value.
◆ MR_BestFitParabolad_OffsetPtr()
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the pointer points to an array element. The reference to the parameter ptr might be preserved in the return value.
◆ MR_BestFitParabolaf_addPoint_2()
accumulates one more point for parabola fitting Generated from method MR::BestFitParabolaf::addPoint. Parameter _this can not be null. It is a single object.
◆ MR_BestFitParabolaf_addPoint_3()
accumulates one more point with given weight for parabola fitting Generated from method MR::BestFitParabolaf::addPoint. Parameter _this can not be null. It is a single object.
◆ MR_BestFitParabolaf_AssignFromAnother()
Generated from method MR::BestFitParabolaf::operator=. Parameter _this can not be null. It is a single object. Parameter _other can not be null. It is a single object. The reference to things referred to by the parameter _other (if any) might be preserved in this object. The returned pointer will never be null. It is non-owning, do NOT destroy it. When this function is called, this object will drop any object references it had previously.
◆ MR_BestFitParabolaf_ConstructFromAnother()
Generated from constructor MR::BestFitParabolaf::BestFitParabolaf. Parameter _other can not be null. It is a single object. The reference to things referred to by the parameter _other (if any) might be preserved in the constructed object. Never returns null. Returns an instance allocated on the heap! Must call MR_BestFitParabolaf_Destroy() to free it when you're done using it.
◆ MR_BestFitParabolaf_DefaultConstruct()
Constructs an empty (default-constructed) instance. Never returns null. Returns an instance allocated on the heap! Must call MR_BestFitParabolaf_Destroy() to free it when you're done using it.
◆ MR_BestFitParabolaf_DefaultConstructArray()
◆ MR_BestFitParabolaf_Destroy()
Destroys a heap-allocated instance of MR_BestFitParabolaf. Does nothing if the pointer is null.
◆ MR_BestFitParabolaf_DestroyArray()
Destroys a heap-allocated array of MR_BestFitParabolaf. Does nothing if the pointer is null.
◆ MR_BestFitParabolaf_getBestParabola()
computes the best approximating parabola from the accumulated points; Generated from method MR::BestFitParabolaf::getBestParabola. Parameter _this can not be null. It is a single object. Parameter tol has a default argument: std::numeric_limits<float>::epsilon(), pass a null pointer to use it. Never returns null. Returns an instance allocated on the heap! Must call MR_Parabolaf_Destroy() to free it when you're done using it.
◆ MR_BestFitParabolaf_OffsetMutablePtr()
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the pointer points to an array element. The reference to the parameter ptr might be preserved in the return value.
◆ MR_BestFitParabolaf_OffsetPtr()
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the pointer points to an array element. The reference to the parameter ptr might be preserved in the return value.