Changeset 0856a96
- Timestamp:
- Nov 11, 2019, 2:41:41 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 1188195
- Parents:
- af0bf71
- git-author:
- Dmitry Kobets <dkobets@…> (10/14/19 18:30:52)
- git-committer:
- Dmitry Kobets <dkobets@…> (11/11/19 14:41:41)
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/vector.hfa
raf0bf71 r0856a96 11 11 // Constructors 12 12 13 void ?{}( vec2& v, float x, float y) {13 void ?{}(vec2& v, float x, float y) { 14 14 v.[x, y] = [x, y]; 15 15 } … … 27 27 void ?=?(vec2& vec, const vec2& other) with (vec) { 28 28 [x,y] = other.[x,y]; 29 } 30 void ?=?(vec2& vec, zero_t) with (vec) { 31 [x,y] = [0,0]; 29 32 } 30 33
Note: See TracChangeset
for help on using the changeset viewer.