Changeset 5454d77 for libcfa/src/vec
- Timestamp:
- Jul 18, 2023, 12:22:32 PM (2 years ago)
- Branches:
- master
- Children:
- c635047, db94b5d
- Parents:
- 94d2544
- Location:
- libcfa/src/vec
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/vec/vec2.hfa
r94d2544 r5454d77 283 283 return os | '<' | x | ',' | y | '>'; 284 284 } 285 void ?|?(ostype & os, vec2(T) v ) with (v) { 286 (ostype &)(os | v); ends(os); 287 } 285 OSTYPE_VOID_IMPL( vec2(T) ) 288 286 } -
libcfa/src/vec/vec3.hfa
r94d2544 r5454d77 292 292 return os | '<' | x | ',' | y | ',' | z | '>'; 293 293 } 294 void ?|?(ostype & os, vec3(T) v ) with (v) { 295 (ostype &)(os | v); ends(os); 296 } 294 OSTYPE_VOID_IMPL( vec3(T) ) 297 295 } -
libcfa/src/vec/vec4.hfa
r94d2544 r5454d77 287 287 return os | '<' | x | ',' | y | ',' | z | ',' | w | '>'; 288 288 } 289 void ?|?(ostype & os, vec4(T) v ) with (v) { 290 (ostype &)(os | v); ends(os); 291 } 289 OSTYPE_VOID_IMPL( vec4(T) ) 292 290 } 293 291
Note:
See TracChangeset
for help on using the changeset viewer.