Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 786 Bytes

NOTES.md

File metadata and controls

19 lines (14 loc) · 786 Bytes

Rules:

  • *-functions.ts files hold a set of functions

    • that are pure, in the sense:
      • same input -> same output
      • input is not mutaded
    • that free all intermeediate objects after the value returns.
      • All Pools after the method has called have the same state of free and used object except the result of the functions should be a newly used object from one of the pools or a primitive result like a number (scalar) or boolean
  • class methods in files like vect.ts and segment.ts can mutate the object and are chainable.

Ideas:

  • Create a special Pool which stores the data in a Float32Array. But how to avoid an Vect object allocation at all.
  • Is there a problem with circular dependencies between vect.ts <-> vect-functions.ts?
  • Benchmarks :D