ObjFW  Diff

Differences From Artifact [0701029750]:

To Artifact [dc5b2c9055]:


21
22
23
24
25
26
27

28
29
30
31
32
33
34
@class OFFloatMatrix;

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

	size_t dimension;
	float *data;
}

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







>







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

/**
 * \brief A class for storing and manipulating vectors of floats.
 */
@interface OFFloatVector: OFObject <OFCopying>
{
@public
	size_t dimension;
	float *data;
}

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