Visualization

From Hegemon Wiki
Revision as of 02:55, 4 March 2017 by H3g3m0n (talk | contribs)
Jump to navigation Jump to search
  • Probably in Rust.
  • Reactive.
    • Data is changed, graph gets updated.
    • Can be defined by a function that changes at runtime.
    • Pub/sub? Channels?
    • Can I put in a fixed value without having to manually wrap it?
      • Rust generics?
    • What about passing things up the hierarchy? ie, graph size changes, the axis size need to change too...
    • Can the number of dimensions change?
    • What about animating the changes (interpolation function between old and new)?
    • Wouldn't just be for fixed data, could be interpolating between 2 functions while they are still being updated.
  • Basic things like the Axis themselves can be functions.
    • Axis size/position.
    • Number of 'nodes' that show numbers and such. Mark a point every 10? Split up based on the length and put a point every 1/5th. Function to generate text? Function that defines points?