source: tests/vector/vec2_ldouble.cfa @ 1188195

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 1188195 was 1188195, checked in by Dmitry Kobets <dkobets@…>, 4 years ago

Finished floating point vec2

  • Property mode set to 100644
File size: 343 bytes
RevLine 
[1188195]1#include "../../libcfa/src/vec/vec2.hfa"
2#include <fstream.hfa>
3#include <limits.hfa>
4
5int main(void) {
6    vec2(long double) v1 = {(long double)MAX,(long double)MIN};
7    sout | "ctor(x,y):" | v1;
8
9    vec2(long double) v2 = {3.4144423, -1.2342315};
10    vec2(long double) v3 = {100.23125123, 14.23};
11    sout | "dot(v2,v3):" | dot(v2, v3);
12}
Note: See TracBrowser for help on using the repository browser.