ObjFW  Diff

Differences From Artifact [0e103db2bb]:

To Artifact [5f3106a61c]:


86
87
88
89
90
91
92







93
94
95
/**
 * @brief Transforms the specified vector according to the matrix.
 *
 * @param vector The vector to transform
 * @return The transformed vector
 */
- (OFVector4D)transformedVector: (OFVector4D)vector;







@end

OF_ASSUME_NONNULL_END







>
>
>
>
>
>
>



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/**
 * @brief Transforms the specified vector according to the matrix.
 *
 * @param vector The vector to transform
 * @return The transformed vector
 */
- (OFVector4D)transformedVector: (OFVector4D)vector;

/**
 * @brief Transforms the specified vectors in-place according to the matrix.
 *
 * @param vectors The vectors to transform
 */
- (void)transformVectors: (OFVector4D *)vectors count: (size_t)count;
@end

OF_ASSUME_NONNULL_END