ObjFW  Diff

Differences From Artifact [cb63fbb148]:

To Artifact [0573d05fbc]:


92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
 * \return The dimension of the vector
 */
- (size_t)dimension;

/**
 * \brief Returns an array of floats with the contents of the vector.
 *
 * Modifying the returned array is allowed and will change the vector.
 *
 * \brief An array of floats with the contents of the vector
 */
- (float*)floatArray;

/**
 * \brief Adds the specified vector to the receiver.
 *
 * \param vector The vector to add
 */
- (void)addVector: (OFFloatVector*)vector;







|



|







92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
 * \return The dimension of the vector
 */
- (size_t)dimension;

/**
 * \brief Returns an array of floats with the contents of the vector.
 *
 * Modifying the returned array directly is allowed and will change the vector.
 *
 * \brief An array of floats with the contents of the vector
 */
- (float*)cArray;

/**
 * \brief Adds the specified vector to the receiver.
 *
 * \param vector The vector to add
 */
- (void)addVector: (OFFloatVector*)vector;