Changeset db94b5d for libcfa/src/vec


Ignore:
Timestamp:
Jul 18, 2023, 1:25:21 PM (2 years ago)
Author:
caparsons <caparson@…>
Branches:
master
Children:
da6db1a2
Parents:
c44705c (diff), 5454d77 (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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
libcfa/src/vec
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/vec/vec2.hfa

    rc44705c rdb94b5d  
    283283        return os | '<' | x | ',' | y | '>';
    284284    }
    285     void ?|?(ostype & os, vec2(T) v ) with (v) {
    286         (ostype &)(os | v); ends(os);
    287     }
     285        OSTYPE_VOID_IMPL( vec2(T) )
    288286}
  • libcfa/src/vec/vec3.hfa

    rc44705c rdb94b5d  
    292292        return os | '<' | x | ',' | y | ',' | z | '>';
    293293    }
    294     void ?|?(ostype & os, vec3(T) v ) with (v) {
    295         (ostype &)(os | v); ends(os);
    296     }
     294        OSTYPE_VOID_IMPL( vec3(T) )
    297295}
  • libcfa/src/vec/vec4.hfa

    rc44705c rdb94b5d  
    287287        return os | '<' | x | ',' | y | ',' | z | ',' | w | '>';
    288288    }
    289     void ?|?(ostype & os, vec4(T) v ) with (v) {
    290         (ostype &)(os | v); ends(os);
    291     }
     289        OSTYPE_VOID_IMPL( vec4(T) )
    292290}
    293291
Note: See TracChangeset for help on using the changeset viewer.