UlascanErsoy / Team-7---Multimodal-Accessibility

TOPH: Data driven sonification framework
1 stars 2 forks source link

Axes Objects #24

Open UlascanErsoy opened 3 weeks ago

UlascanErsoy commented 3 weeks ago

There should be an axes object that is tasked with handling conversions between different domains.

For example;

x = [0, 1, 2, 3]
lin_axis = LinearAxis(domain=(0 , 3), range=(110, 880))
>>lin_axis(0)
>>110
>>lin_axis(3)
>>880

etc.

UlascanErsoy commented 2 weeks ago

working on this.

UlascanErsoy commented 2 weeks ago

As of 8a43eb87432aff57c1845f4c775e2652e8301ce3, the LinearSpatialAxis object is available.