You are reading a single comment by @DrAzzy and its replies. Click here to read the full conversation.
  • I just realized a really simple way to do conversions to arrays of bytes for saving...

    
    function fToB(f){
    var n=new Float32Array([f]);
    return new Uint8Array(n.buffer,0,4);
    }
    
    

    And so on...

About

Avatar for DrAzzy @DrAzzy started