tom-weatherhead/thaw-image-processing.ts

View on GitHub
src/util/sample.ts

Summary

Maintainability
A
0 mins
Test Coverage
// thaw-image-processing.ts/src/sample.ts

export default class Sample {
    public x: number;
    public sampleValueAtX: number;

    constructor(x: number, s: number) {
        this.x = x;
        this.sampleValueAtX = s;
    }
}