Differences From Artifact [77a89afbe5]:
- File src/OFMatrix4x4.m — part of check-in [d377e8819e] at 2023-02-19 17:40:53 on branch trunk — Make GCC happy again (user: js, size: 5559) [annotate] [blame] [check-ins using] [more...]
To Artifact [7871015766]:
- File src/OFMatrix4x4.m — part of check-in [abc315cc89] at 2023-08-17 14:53:08 on branch trunk — Add more designated initializers (user: js, size: 5609) [annotate] [blame] [check-ins using] [more...]
︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | + + + + + | initWithValues: identityValues] autorelease]; } + (instancetype)matrixWithValues: (const float [4][4])values { return [[[self alloc] initWithValues: values] autorelease]; } - (instancetype)init { OF_INVALID_INIT_METHOD } - (instancetype)initWithValues: (const float [4][4])values { self = [super init]; memcpy(_values, values, sizeof(_values)); |
︙ |