[DiscordArchive] Wouldn't you feasibly be able to fuck with a class at runtime then?
[DiscordArchive] Wouldn't you feasibly be able to fuck with a class at runtime then?
Archived author: Skarn • Posted: 2018-06-03T20:49:50.523000+00:00
Original source
yeah
Archived author: Skarn • Posted: 2018-06-03T20:49:56.066000+00:00
Original source
that's exactly what it is doing
Archived author: Kavligula • Posted: 2018-06-03T20:50:00.190000+00:00
Original source
And I guess I still don't fully understand the syntax of Base <variable> : <variable thrown into the function>
Archived author: Kavligula • Posted: 2018-06-03T20:50:19.479000+00:00
Original source
The only time I've seen that in C++ in my limited use of it was with supplying variables to constructors
Archived author: Skarn • Posted: 2018-06-03T20:50:30.608000+00:00
Original source
the question is how to read:
1) n_bits from start
2) n1_bits in the middle
3) and one last bit
Archived author: Skarn • Posted: 2018-06-03T20:50:51.349000+00:00
Original source
let me simplify it sec
Archived author: Skarn • Posted: 2018-06-03T20:52:11.675000+00:00
Original source
struct fixed_point
{
int16_t decimal : 8;
int16_t integer : 7;
int16_t sign : 1;
float to_float() const { return (sign ? -1.0f : 1.0f) * (7+ 8/ float (1 << 8));
}