Changeset 4e107bf for libcfa/src/vec
- Timestamp:
- Aug 3, 2024, 3:48:58 PM (18 months ago)
- Branches:
- master
- Children:
- 1571e4d
- Parents:
- a9ae5ca (diff), 433e2c3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- libcfa/src/vec
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/vec/vec2.hfa
ra9ae5ca r4e107bf 283 283 return os | '<' | x | ',' | y | '>'; 284 284 } 285 OSTYPE_VOID_IMPL( vec2(T) )285 OSTYPE_VOID_IMPL( os, vec2(T) ) 286 286 } -
libcfa/src/vec/vec3.hfa
ra9ae5ca r4e107bf 292 292 return os | '<' | x | ',' | y | ',' | z | '>'; 293 293 } 294 OSTYPE_VOID_IMPL( vec3(T) )294 OSTYPE_VOID_IMPL( os, vec3(T) ) 295 295 } -
libcfa/src/vec/vec4.hfa
ra9ae5ca r4e107bf 287 287 return os | '<' | x | ',' | y | ',' | z | ',' | w | '>'; 288 288 } 289 OSTYPE_VOID_IMPL( vec4(T) )289 OSTYPE_VOID_IMPL( os, vec4(T) ) 290 290 } 291 291
Note:
See TracChangeset
for help on using the changeset viewer.