ObjFW  Diff

Differences From Artifact [40205a6dae]:

To Artifact [8345b9957a]:


21
22
23
24
25
26
27

28
29
30
31
32
33
34
@class OFFloatVector;

/**
 * \brief A class for storing and manipulating matrices of floats.
 */
@interface OFFloatMatrix: OFObject <OFCopying>
{

	size_t rows, columns;
	float *data;
}

/**
 * \brief Creates a new matrix with the specified dimension.
 *







>







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@class OFFloatVector;

/**
 * \brief A class for storing and manipulating matrices of floats.
 */
@interface OFFloatMatrix: OFObject <OFCopying>
{
@public
	size_t rows, columns;
	float *data;
}

/**
 * \brief Creates a new matrix with the specified dimension.
 *