unsigned int uint
Definition Core.h:309
#define JPH_NAMESPACE_END
Definition Core.h:240
#define JPH_NAMESPACE_BEGIN
Definition Core.h:234
void QuickSort(Iterator inBegin, Iterator inEnd, Compare inCompare)
Implementation of the quick sort algorithm. The STL version implementation is not consistent across p...
Definition QuickSort.h:53
std::vector< T, STLAllocator< T > > Array
Definition STLAllocator.h:81
#define JPH_DECLARE_SERIALIZABLE_NON_VIRTUAL(class_name)
Definition SerializableObject.h:71
A point on the curve.
Definition LinearCurve.h:23
Definition LinearCurve.h:17
void RestoreBinaryState(StreamIn &inStream)
Restore the state of this object from inStream.
Definition LinearCurve.cpp:46
float GetValue(float inX) const
Definition LinearCurve.cpp:25
Points mPoints
Definition LinearCurve.h:64
void SaveBinaryState(StreamOut &inStream) const
Saves the state of this object in binary form to inStream.
Definition LinearCurve.cpp:41
void Reserve(uint inNumPoints)
Reserve memory for inNumPoints points.
Definition LinearCurve.h:35
void AddPoint(float inX, float inY)
Definition LinearCurve.h:40
float GetMaxX() const
Get the highest X value.
Definition LinearCurve.h:49
float GetMinX() const
Get the lowest X value.
Definition LinearCurve.h:46
Array< Point > Points
The points on the curve, should be sorted ascending by x.
Definition LinearCurve.h:63
void Sort()
Sort the points on X ascending.
Definition LinearCurve.h:43
void Clear()
Remove all points.
Definition LinearCurve.h:32
Simple binary input stream.
Definition StreamIn.h:11
Simple binary output stream.
Definition StreamOut.h:11